예제 #1
0
 public override bool IsConvertable(TypeScope ts)
 {
     return ts.IsConvertable(this);
 }
예제 #2
0
 public override bool IsConvertable(TypeScope ts)
 {
     if (IsEqual(ts))
         return true;
     if (ts is CompiledScope)
         return ts.IsConvertable(this);
     return false;
 }