C#:
YAML로 작업하기
방법:
C#은 YAML에 대한 내장 지원이 없지만, YamlDotNet과 같은 서드파티 라이브러리를 사용하여 쉽게 YAML을 다룰 수 있습니다. 먼저 YamlDotNet 패키지를 설치해야 합니다:
Install-Package YamlDotNet -Version 11.2.1
YAML 읽기:
다음 내용이 포함된 YAML 파일 config.yaml
을 가지고 있다고 가정해 봅시다:
appSettings:
name: MyApp
version: 1.0.0
다음과 같이 C#에서 이 YAML 파일을 읽고 파싱할 수 있습니다:
using System;
using System.IO;
using YamlDotNet.Serialization;
using YamlDotNet.Serialization.NamingConventions;
public class AppConfig
{
public AppSettings appSettings { get; set; }
}
public class AppSettings
{
public string name { get; set; }
public string version { get; set; }
}
class Program
{
static void Main(string[] args)
{
var yaml = File.ReadAllText("config.yaml");
var deserializer = new DeserializerBuilder()
.WithNamingConvention(UnderscoredNamingConvention.Instance) // 네이밍 컨벤션을 적절히 조정
.Build();
var config = deserializer.Deserialize<AppConfig>(yaml);
Console.WriteLine($"이름: {config.appSettings.name}, 버전: {config.appSettings.version}");
}
}
샘플 출력:
이름: MyApp, 버전: 1.0.0
YAML 쓰기:
YAML 파일에 데이터를 작성하려면 YamlDotNet의 Serializer
클래스를 사용하세요. 객체를 다시 YAML로 직렬화하는 방법은 다음과 같습니다:
using System;
using System.IO;
using YamlDotNet.Serialization;
using YamlDotNet.Serialization.NamingConventions;
class Program
{
static void Main(string[] args)
{
var config = new AppConfig
{
appSettings = new AppSettings
{
name = "MyApp",
version = "2.0.0"
}
};
var serializer = new SerializerBuilder()
.WithNamingConvention(UnderscoredNamingConvention.Instance) // 네이밍 컨벤션을 적절히 조정
.Build();
var yaml = serializer.Serialize(config);
File.WriteAllText("updatedConfig.yaml", yaml);
Console.WriteLine(yaml);
}
}
샘플 출력:
appSettings:
name: MyApp
version: 2.0.0
이 간단한 방법은 C# 프로젝트에서 YAML을 효과적으로 다루는 방법을 보여줍니다. YamlDotNet 라이브러리를 사용하여 YAML 파일을 읽고 쓰기가 간단하다는 것을 알 수 있습니다.