コード例 #1
0
        private void FormatAttributes(XmlNode node)
        {
            IXmlFormattableAttributes formattable = node as IXmlFormattableAttributes;

            if (formattable != null)
            {
                formattable.FormatAttributes(this);
            }
        }
コード例 #2
0
        private void FormatAttributes(XmlNode node)
        {
            IXmlFormattableAttributes attributes = node as IXmlFormattableAttributes;

            if (attributes != null)
            {
                attributes.FormatAttributes(this);
            }
        }
コード例 #3
0
        private void FormatAttributes(XmlNode node)
        {
            IXmlFormattableAttributes formattableAttributes = node as IXmlFormattableAttributes;

            if (formattableAttributes == null)
            {
                return;
            }
            formattableAttributes.FormatAttributes(this);
        }