XmlDocument 클래스
XML(Extensible Markup Lanuage)를 읽기 위한 클래스로
XML형식의 데이터를 읽거나, 편집, 유효성 검사 등을 수행할수 있다.
반응형
public void GetBookInformation(ref string title, ref string ISBN, ref string publicationDate,
ref string price, ref string genre, XmlNode book)
{
XmlElement bookElement = (XmlElement)book;
// Get the attributes of a book.
XmlAttribute attr = bookElement.GetAttributeNode("ISBN");
ISBN = attr.InnerXml;
attr = bookElement.GetAttributeNode("genre");
genre = attr.InnerXml;
attr = bookElement.GetAttributeNode("publicationdate");
publicationDate = attr.InnerXml;
// Get the values of child elements of a book.
title = bookElement["title"].InnerText;
price = bookElement["price"].InnerText;
}
Microsoft XmlDocument 클래스 : [ 링크 ]
★☆☆☆☆
반응형
'개발 > 게임) 개발관련' 카테고리의 다른 글
환경설정)SSH Key 생성(Window / Mac) (0) | 2022.07.04 |
---|---|
iOS) CocoaPods Start Guide (0) | 2022.06.23 |
iOS) 디자인 가이드(Human interface Guidelines) (0) | 2022.06.14 |
Android) Andorid Studio Gradle View에서 Task가 안보이는 경우 (0) | 2022.05.08 |
개발관련) 조단 메크너의 게임 제작 20가지 팁 (페르시아의 왕자 개발자) (0) | 2022.05.04 |
댓글