Boo.Lang.Compiler.Steps.EmitAssembly.TypeCodeFor C# (CSharp) Method

TypeCodeFor() private static method

private static TypeCodeFor ( IType type ) : TypeCode
type IType
return TypeCode
        private static TypeCode TypeCodeFor(IType type)
        {
            var externalType = type as ExternalType;
            if (externalType != null)
                return Type.GetTypeCode(externalType.ActualType);
            throw new NotImplementedException(string.Format("TypeCodeFor({0}) not implemented!", type));
        }
EmitAssembly