LANCommander/LANCommander.SDK/Helpers/IniHelper.cs

32 lines
824 B
C#
Raw Permalink Normal View History

2026-05-16 18:14:41 -05:00
using System.IO;
using System.Text;
2026-05-16 18:14:41 -05:00
using LANCommander.SDK.Parsers.Ini;
namespace LANCommander.SDK.Helpers
{
public static class IniHelper
{
2026-05-16 18:14:41 -05:00
public static readonly IniParseOptions DefaultOptions = new();
2026-05-16 18:14:41 -05:00
public static IniDocument FromString(string iniFileContent)
{
2026-05-16 18:14:41 -05:00
return IniParser.Parse(iniFileContent, DefaultOptions);
}
2026-05-16 18:14:41 -05:00
public static IniDocument FromString(string iniFileContent, IniParseOptions options)
{
2026-05-16 18:14:41 -05:00
return IniParser.Parse(iniFileContent, options);
}
2026-05-16 18:14:41 -05:00
public static string ToString(IniDocument document)
{
2026-05-16 18:14:41 -05:00
return document.Serialize();
}
2026-05-16 18:14:41 -05:00
public static string ToString(IniDocument document, Encoding encoding)
{
2026-05-16 18:14:41 -05:00
return document.Serialize();
}
}
}