Microsoft.CSharp.RuntimeBinder.Semantics.AggregateSymbol.IsPredefined C# (CSharp) Method

IsPredefined() public method

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

Usage Example

Ejemplo n.º 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