ABT.ExprType.EqualType C# (CSharp) 메소드

EqualType() 공개 추상적인 메소드

public abstract EqualType ( ExprType other ) : System.Boolean
other ExprType
리턴 System.Boolean
        public abstract Boolean EqualType(ExprType other);

Usage Example

예제 #1
0
 public static Boolean EqualType(ExprType t1, ExprType t2)
 {
     return(t1.EqualType(t2));
 }
All Usage Examples Of ABT.ExprType::EqualType