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