Reading/writing an INI file(读/写一个INI文件)
问题描述
.NET 框架中是否有可以读/写标准 .ini 文件的类:
Is there any class in the .NET framework that can read/write standard .ini files:
[Section]
<keyname>=<value>
...
Delphi 有 TIniFile
组件,我想知道 C# 是否有类似的东西?
Delphi has the TIniFile
component and I want to know if there is anything similar for C#?
推荐答案
.NET 框架的创建者希望您使用基于 XML 的配置文件,而不是 INI 文件.所以不,没有用于读取它们的内置机制.
The creators of the .NET framework want you to use XML-based config files, rather than INI files. So no, there is no built-in mechanism for reading them.
不过,有第三方解决方案可用.
There are third party solutions available, though.
- INI 处理程序可以通过 NuGet 包 获得,例如 INI 解析器.
- 您可以编写自己的 INI 处理程序,这是老式的、费力的方式.它使您可以更好地控制实现,您可以将其用于坏处或好处.参见例如一个使用 C#、P/Invoke 和 Win32 的 INI 文件处理类.
- INI handlers can be obtained as NuGet packages, such as INI Parser.
- You can write your own INI handler, which is the old-school, laborious way. It gives you more control over the implementation, which you can use for bad or good. See e.g. an INI file handling class using C#, P/Invoke and Win32.
这篇关于读/写一个INI文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:读/写一个INI文件
基础教程推荐
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01