Esempio n. 1
0
    public override bool Equal(JavaCompiler.Type other)
    {
        Boolean f = true;

        try
        {
            int b = Convert.ToInt32(other);
        }
        catch {
            f = false;
        }
        return(f);
    }
Esempio n. 2
0
 public bool Compatible(JavaCompiler.Type other)
 {
     return(Equal(other));
 }