728x90
<?xml version="1.0" encoding="utf-8" ?>
<config>
<server>
<ip>127.0.0.1</ip>
<port>8080</port>
</server>
<application width="100" height="100" />
</config>
Xml 파일 읽어서 사용할 객체
[XmlRoot("config")]
public class ClientConfigModel
{
[XmlElement("server")]
public ConfigServer server { get; set; }
[XmlElement("application")]
public ConfigApplication application { get; set; }
}
[Serializable()]
public class ConfigServer
{
[XmlElement("ip")]
public string ip { get; set; }
[XmlElement("port")]
public int port { get; set; }
}
[Serializable()]
public class ConfigApplication
{
[XmlAttribute("width")]
public int width { get; set; }
[XmlAttribute("height")]
public int height { get; set; }
}
데이터 읽어오기
/// <summary>
/// 설정파일 읽어오기
/// </summary>
/// <param name="path">설정파일경로</param>
public static void Read(string path)
{
if (System.IO.File.Exists(path))
{
using (var sr = new StreamReader(path))
{
var xs = new XmlSerializer(typeof(Model.ClientConfigModel));
var configModel = (Model.ClientConfigModel)xs.Deserialize(sr);
Console.WriteLine("ip : {0}", configModel.server.ip);
Console.WriteLine("port : {0}", configModel.server.port);
Console.WriteLine("width : {0}", configModel.application.width);
Console.WriteLine("height : {0}", configModel.application.height);
}
}
}
Console 결과
'개발언어 > C#' 카테고리의 다른 글
C#을 사용한 마이크 오디오 액세스 (0) | 2023.02.21 |
---|---|
C#을 사용하여 오디오 파형 플롯 (0) | 2023.02.21 |
[C#] 오류난 함수 출력, 로그에 기록 (0) | 2022.12.23 |
[C#] 마우스 이동시 ListView의 item을 툴팁(tooltip)으로 보여주기 (0) | 2022.12.22 |
[C#] 돈 표시 및 콤마 표시 하기 - 다국어 (0) | 2022.12.15 |