当前位置: 首页>>代码示例>>C#>>正文


C# TypeScope.GetTypeDesc方法代码示例

本文整理汇总了C#中System.Xml.Serialization.TypeScope.GetTypeDesc方法的典型用法代码示例。如果您正苦于以下问题:C# TypeScope.GetTypeDesc方法的具体用法?C# TypeScope.GetTypeDesc怎么用?C# TypeScope.GetTypeDesc使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Xml.Serialization.TypeScope的用法示例。


在下文中一共展示了TypeScope.GetTypeDesc方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: WriteTypeInfo

        string WriteTypeInfo(TypeScope scope, TypeDesc typeDesc, Type type){
            InitTheFirstTime();
            string typeFullName = typeDesc.CSharpName;
            string typeVariable = (string)reflectionVariables[typeFullName];
            if (typeVariable != null)
                return typeVariable;

            if (type.IsArray)
            {
                typeVariable = GenerateVariableName("array", typeDesc.CSharpName);
                TypeDesc elementTypeDesc = typeDesc.ArrayElementTypeDesc;
                if (elementTypeDesc.UseReflection)
                {
                    string elementTypeVariable = WriteTypeInfo(scope, elementTypeDesc, scope.GetTypeFromTypeDesc(elementTypeDesc));
                    writer.WriteLine("static "+typeof(Type).FullName+" "+typeVariable +" = " + elementTypeVariable + ".MakeArrayType();");
                }
                else
                {
                    string assemblyVariable = WriteAssemblyInfo(type);
                    writer.Write("static "+typeof(Type).FullName+" "+typeVariable +" = "+assemblyVariable+".GetType(");
                    WriteQuotedCSharpString(type.FullName);
                    writer.WriteLine(");");
                }
            }
            else
            {
                typeVariable = GenerateVariableName("type", typeDesc.CSharpName);

                Type parameterType = Nullable.GetUnderlyingType(type);
                if (parameterType != null)
                {
                    string parameterTypeVariable = WriteTypeInfo(scope, scope.GetTypeDesc(parameterType), parameterType);
                    writer.WriteLine("static "+typeof(Type).FullName+" "+typeVariable +" = typeof(System.Nullable<>).MakeGenericType(new " + typeof(Type).FullName + "[] {"+parameterTypeVariable+"});");
                }
                else
                {
                    string assemblyVariable = WriteAssemblyInfo(type);
                    writer.Write("static "+typeof(Type).FullName+" "+typeVariable +" = "+assemblyVariable+".GetType(");
                    WriteQuotedCSharpString(type.FullName);
                    writer.WriteLine(");");
                }
            }
            
            reflectionVariables.Add(typeFullName, typeVariable);

            TypeMapping mapping = scope.GetTypeMappingFromTypeDesc(typeDesc);
            if (mapping != null)
                WriteMappingInfo(mapping, typeVariable, type);
            if (typeDesc.IsCollection || typeDesc.IsEnumerable){// Arrays use the generic item_Array
                TypeDesc elementTypeDesc = typeDesc.ArrayElementTypeDesc;
                if (elementTypeDesc.UseReflection)
                    WriteTypeInfo(scope, elementTypeDesc, scope.GetTypeFromTypeDesc(elementTypeDesc));
                WriteCollectionInfo(typeVariable, typeDesc, type);
            }
            return typeVariable;
        }
开发者ID:uQr,项目名称:referencesource,代码行数:56,代码来源:XmlSerializationWriter.cs

示例2: WriteReflectionInit

 internal void WriteReflectionInit(TypeScope scope)
 {
     foreach (Type type in scope.Types)
     {
         TypeDesc typeDesc = scope.GetTypeDesc(type);
     }
 }
开发者ID:shiftkey-tester,项目名称:corefx,代码行数:7,代码来源:XmlSerializationWriterILGen.cs

示例3: WriteReflectionInit

 internal void WriteReflectionInit(TypeScope scope){
     foreach (Type type in scope.Types) {
         TypeDesc typeDesc = scope.GetTypeDesc(type);
         if (typeDesc.UseReflection)
             WriteTypeInfo(scope, typeDesc, type);
     }
 }
开发者ID:uQr,项目名称:referencesource,代码行数:7,代码来源:XmlSerializationWriter.cs

示例4: WriteTypeInfo

 private string WriteTypeInfo(TypeScope scope, TypeDesc typeDesc, Type type)
 {
     this.InitTheFirstTime();
     string cSharpName = typeDesc.CSharpName;
     string str2 = (string) this.reflectionVariables[cSharpName];
     if (str2 == null)
     {
         if (type.IsArray)
         {
             str2 = this.GenerateVariableName("array", typeDesc.CSharpName);
             TypeDesc arrayElementTypeDesc = typeDesc.ArrayElementTypeDesc;
             if (arrayElementTypeDesc.UseReflection)
             {
                 string str3 = this.WriteTypeInfo(scope, arrayElementTypeDesc, scope.GetTypeFromTypeDesc(arrayElementTypeDesc));
                 this.writer.WriteLine("static " + typeof(Type).FullName + " " + str2 + " = " + str3 + ".MakeArrayType();");
             }
             else
             {
                 string str4 = this.WriteAssemblyInfo(type);
                 this.writer.Write("static " + typeof(Type).FullName + " " + str2 + " = " + str4 + ".GetType(");
                 this.WriteQuotedCSharpString(type.FullName);
                 this.writer.WriteLine(");");
             }
         }
         else
         {
             str2 = this.GenerateVariableName("type", typeDesc.CSharpName);
             Type underlyingType = Nullable.GetUnderlyingType(type);
             if (underlyingType != null)
             {
                 string str5 = this.WriteTypeInfo(scope, scope.GetTypeDesc(underlyingType), underlyingType);
                 this.writer.WriteLine("static " + typeof(Type).FullName + " " + str2 + " = typeof(System.Nullable<>).MakeGenericType(new " + typeof(Type).FullName + "[] {" + str5 + "});");
             }
             else
             {
                 string str6 = this.WriteAssemblyInfo(type);
                 this.writer.Write("static " + typeof(Type).FullName + " " + str2 + " = " + str6 + ".GetType(");
                 this.WriteQuotedCSharpString(type.FullName);
                 this.writer.WriteLine(");");
             }
         }
         this.reflectionVariables.Add(cSharpName, str2);
         TypeMapping typeMappingFromTypeDesc = scope.GetTypeMappingFromTypeDesc(typeDesc);
         if (typeMappingFromTypeDesc != null)
         {
             this.WriteMappingInfo(typeMappingFromTypeDesc, str2, type);
         }
         if (typeDesc.IsCollection || typeDesc.IsEnumerable)
         {
             TypeDesc desc2 = typeDesc.ArrayElementTypeDesc;
             if (desc2.UseReflection)
             {
                 this.WriteTypeInfo(scope, desc2, scope.GetTypeFromTypeDesc(desc2));
             }
             this.WriteCollectionInfo(str2, typeDesc, type);
         }
     }
     return str2;
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:59,代码来源:ReflectionAwareCodeGen.cs


注:本文中的System.Xml.Serialization.TypeScope.GetTypeDesc方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。