getClass() public method

public getClass ( ) : AggregateSymbol
return AggregateSymbol
コード例 #1
0
ファイル: WithType.cs プロジェクト: jnm2/corefx
 public void Set(MethodOrPropertySymbol mps, AggregateType ats, TypeArray typeArgs)
 {
     if (mps == null)
     {
         ats      = null;
         typeArgs = null;
     }
     Debug.Assert(ats == null || mps != null && mps.getClass() == ats.getAggregate());
     base.Set(mps, ats);
     TypeArgs = typeArgs;
 }
コード例 #2
0
ファイル: WithType.cs プロジェクト: ChuangYang/corefx
 public void Set(MethodOrPropertySymbol mps, AggregateType ats, TypeArray typeArgs)
 {
     if (mps == null)
     {
         ats = null;
         typeArgs = null;
     }
     Debug.Assert(ats == null || mps != null && mps.getClass() == ats.getAggregate());
     base.Set(mps, ats);
     this.TypeArgs = typeArgs;
 }