System.Runtime.Serialization.Formatters.Soap.Converter.ToType C# (CSharp) 메소드

ToType() 정적인 개인적인 메소드

static private ToType ( InternalPrimitiveTypeE code ) : Type
code InternalPrimitiveTypeE
리턴 System.Type
        internal static Type ToType(InternalPrimitiveTypeE code)
        {
            InternalST.Soap("Converter", "ToType Entry ", ((Enum)code).ToString());
            lock(typeofConverter)
            {
                if (typeA == null)
                    InitTypeA();
            }
            InternalST.Soap("Converter", "ToType Exit ", ((typeA[(int)code] == null)?"null ":typeA[(int)code].Name));               
            return typeA[(int)code];
        }