public override bool Equal(JavaCompiler.Type other) { Boolean f = true; try { int b = Convert.ToInt32(other); } catch { f = false; } return(f); }
public bool Compatible(JavaCompiler.Type other) { return(Equal(other)); }