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

IsPredefined() 공개 메소드

public IsPredefined ( ) : bool
리턴 bool
        public bool IsPredefined()
        {
            return _isPredefined;
        }

Usage Example

예제 #1
0
 public static string GetNiceName(AggregateSymbol type)
 {
     if (type.IsPredefined())
         return GetNiceName(type.GetPredefType());
     else
         return null;
 }
All Usage Examples Of Microsoft.CSharp.RuntimeBinder.Semantics.AggregateSymbol::IsPredefined