Microsoft.CSharp.RuntimeBinder.Semantics.MethodOrPropertySymbol.getClass C# (CSharp) Method

getClass() public method

public getClass ( ) : AggregateSymbol
return AggregateSymbol
        public AggregateSymbol getClass()
        {
            return parent.AsAggregateSymbol();
        }

Usage Example

示例#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;
 }
All Usage Examples Of Microsoft.CSharp.RuntimeBinder.Semantics.MethodOrPropertySymbol::getClass