Bike.Interpreter.ClrImportContext.IsVisibleClrType C# (CSharp) Method

IsVisibleClrType() public method

public IsVisibleClrType ( string typeName ) : bool
typeName string
return bool
        public bool IsVisibleClrType(string typeName)
        {
            lock (syncLock)
            {
                return visibleTypes.ContainsKey(typeName);
            }
        }

Usage Example

Ejemplo n.º 1
0
 public bool IsClrType(string typeName)
 {
     return(clrImportContext.IsVisibleClrType(typeName));
 }