Microsoft.CSharp.RuntimeBinder.Semantics.AggregateSymbol.GetBaseAgg C# (CSharp) 메소드

GetBaseAgg() 공개 메소드

public GetBaseAgg ( ) : AggregateSymbol
리턴 AggregateSymbol
        public AggregateSymbol GetBaseAgg()
        {
            return _pBaseClass == null ? null : _pBaseClass.getAggregate();
        }

Usage Example

예제 #1
0
 public bool FindBaseAgg(AggregateSymbol agg)
 {
     for (AggregateSymbol aggT = this; aggT != null; aggT = aggT.GetBaseAgg())
     {
         if (aggT == agg)
         {
             return(true);
         }
     }
     return(false);
 }
All Usage Examples Of Microsoft.CSharp.RuntimeBinder.Semantics.AggregateSymbol::GetBaseAgg