Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsPrimitive C# (CSharp) Method

IsPrimitive() public method

public IsPrimitive ( string name ) : bool
name string
return bool
        public bool IsPrimitive(string name)
        {
            return _primitives.ContainsKey(name);
        }
TypeSystemServices