ABT.StructOrUnionType.EqualType C# (CSharp) Method

EqualType() public method

public EqualType ( ExprType other ) : System.Boolean
other ExprType
return System.Boolean
        public override Boolean EqualType(ExprType other) =>
            other.Kind == ExprTypeKind.STRUCT_OR_UNION && ReferenceEquals(((StructOrUnionType)other)._layout, this._layout);