Boo.Lang.Compiler.TypeSystem.ExternalType.ExternalType C# (CSharp) Method

ExternalType() private method

private ExternalType ( TypeSystemServices tss, Type type ) : System
tss TypeSystemServices
type System.Type
return System
        internal ExternalType(TypeSystemServices tss, Type type)
        {
            if (null == type) throw new ArgumentException("type");
            _typeSystemServices = tss;
            _type = type;
        }