Example #1
0
 public override bool Equals(TypeDescription other)
 {
     return(other is SystemTypeDescription);
 }
 public override bool Equals(TypeDescription other)
 {
     return(other is ArrayTypeDescription atd && ElementType.Equals(atd.ElementType));
 }
 public ArrayTypeDescription(TypeDescription elementType)
 {
     ElementType = elementType;
 }
Example #4
0
 public override bool Equals(TypeDescription other)
 {
     return(other is TypeHandleTypeDescription thd && thd.TypeName.Equals(TypeName));
 }