예제 #1
0
        public static string GetKeyValue(this XmlAttributeCollection col, string key)
        {
            if (col.HasKey(key))
            {
                return(col [key].Value);
            }

            return(null);
        }