ABT.ExprType.EqualType C# (CSharp) Method

EqualType() public abstract method

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

Usage Example

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