當前位置: 首頁>>代碼示例>>C#>>正文


C# TypeDefinition.CorrectName方法代碼示例

本文整理匯總了C#中Mono.Cecil.TypeDefinition.CorrectName方法的典型用法代碼示例。如果您正苦於以下問題:C# TypeDefinition.CorrectName方法的具體用法?C# TypeDefinition.CorrectName怎麽用?C# TypeDefinition.CorrectName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Mono.Cecil.TypeDefinition的用法示例。


在下文中一共展示了TypeDefinition.CorrectName方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: DumpType

        public static XElement DumpType(TypeDefinition type, bool dumpParents=false)
        {
            string typeType;

            if (type.IsInterface)
                typeType = "Interface";
            else if (type.IsEnum)
                typeType = "Enum";
            else if (type.IsValueType)
                typeType = "Struct";
            else if (type.IsClass)
                typeType = "Class";
            else
                typeType = "Type";

            XElement typeXml = new XElement(typeType);
            typeXml.SetAttributeValue("Name", type.CorrectName());

            if (type.IsClass && type.IsSealed && type.IsAbstract)
            {
                typeXml.SetAttributeValue("Static", "true");
            }
            else if (type.IsClass && type.IsAbstract)
            {
                typeXml.SetAttributeValue("Abstract", "true");
            }

            if (!type.IsNested)
                typeXml.SetAttributeValue("Path", type.Namespace);

            //adding fields
            foreach (FieldDefinition field in type.Fields.Where(f => f.IsPublic))
            {
                XElement fieldXml = new XElement("Field");
                fieldXml.SetAttributeValue("Name", field.Name);
                fieldXml.SetAttributeValue("Static", field.IsStatic ? "true" : null);

                if (type.IsEnum)
                {
                    fieldXml.SetAttributeValue("Value", field.Constant);
                }
                else
                {
                    fieldXml.SetAttributeValue("Type", field.FieldType);
                }
                typeXml.Add(fieldXml);
            }

            //adding methods
            foreach (MethodDefinition method in type.Methods.Where(m => m.IsPublic && !m.IsGetter && !m.IsSetter))
            {
                typeXml.Add(DumpMethod(method));
            }

            //adding properties
            foreach (PropertyDefinition property in type.Properties.Where(p => (p.GetMethod != null && p.GetMethod.IsPublic) || (p.SetMethod != null && p.SetMethod.IsPublic)))
            {
                XElement propertyXml = new XElement("Property");
                propertyXml.SetAttributeValue("Name", property.Name);
                propertyXml.SetAttributeValue("Type", property.PropertyType);

                if (property.GetMethod != null && property.GetMethod.IsPublic)
                {
                    propertyXml.Add(DumpMethod(property.GetMethod));
                }
                if (property.SetMethod != null && property.SetMethod.IsPublic)
                {
                    propertyXml.Add(DumpMethod(property.SetMethod));
                }
                typeXml.Add(propertyXml);
            }

            //adding nested types
            foreach (TypeDefinition nestedType in type.NestedTypes.Where(m => m.IsNestedPublic))
            {
                typeXml.Add(DumpType(nestedType));
            }

            //adding members from parent types
            if(dumpParents && type.BaseType!=null)
            {
                XElement parentXml = DumpType(type.BaseType.Resolve(),true);
                foreach (XElement element in parentXml.Elements())
                {
                    if(typeXml.Elements().All(e=>!Check.AreCompatible(e,element)))
                    {
                        typeXml.Add(element);
                    }
                }
            }

            return typeXml;
        }
開發者ID:vlad-zapp,項目名稱:AssemblyChecker,代碼行數:93,代碼來源:Dump.cs


注:本文中的Mono.Cecil.TypeDefinition.CorrectName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。