XmlReader 개체로 데이터 분석(Attribute 읽기) XmlReader 클래스는 요소의 특성을 읽기 위해 6가지 메서드와 3가지 속성과 인덱서을 제공합니다. 먼저 이들의 역할과 원형을 살펴봅시다. 특성 값을 얻어올 때 GetAttribute 메서드를 이용합니다.public string GetAttribute (int i); //i는 인덱스public string GetAttribute (string name); public string GetAttribute (string name, string ns_uri); XmlReader 개체의 현재 위치를 지정한 특성으로 이동할 때 MoveToAttribute 메서드를 이용합니다.public void MoveToAttribute (int i); //i는..