System.Xml.Serialization.XmlReflectionImporter.CreateArrayItemAttribute C# (CSharp) Method

CreateArrayItemAttribute() private static method

private static CreateArrayItemAttribute ( TypeDesc typeDesc, int nestingLevel ) : XmlArrayItemAttribute
typeDesc TypeDesc
nestingLevel int
return XmlArrayItemAttribute
        private static XmlArrayItemAttribute CreateArrayItemAttribute(TypeDesc typeDesc, int nestingLevel)
        {
            XmlArrayItemAttribute xmlArrayItem = new XmlArrayItemAttribute();
            xmlArrayItem.NestingLevel = nestingLevel;
            return xmlArrayItem;
        }