实现 IXMLSerialized 是否会在我的 Temp 目录中创建序列化程序 DLL 文件?

发布于 2024-07-27 19:01:39 字数 215 浏览 8 评论 0原文

通常,当使用 XMLSerializer 自动序列化 ISerialized 对象时,会在 C:\WINDOWS\Temp 上生成 .dll 文件。

如果我实现 IXMLSerialized,告诉它如何序列化/反序列化,它也会生成这个 DLL 吗?
我有一个非常简单的类要序列化,出于权限原因,我试图避免自动生成文件。

有任何想法吗?

谢谢。

Normally, when using the XMLSerializer to automagically serialize an ISerializable object, a .dll file is generated on C:\WINDOWS\Temp.

If I implement IXMLSerializable instead, where I'm telling it how to serialize / deserialize, will it also generate this DLL?
I have a very simple class to serialize, and I'm trying to avoid this automatic generation of files, for permissions reasons.

Any ideas?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑叹一世浮沉 2024-08-03 19:01:39

使用 IXmlSerialized 不会阻止它创建程序集。 为此,请在项目属性中查看:

  1. 在 C# 的“生成”选项卡上,有一个“生成序列化程序集”下拉列表。
  2. 在 VB.NET 的“编译”选项卡上,有一个“高级编译选项”按钮。 单击它,您将找到“生成序列化程序集”下拉列表。

在这两种情况下,您都可以将其设置为“关闭”并手动使用 XML 序列化程序生成器工具 (Sgen.exe) 用于生成程序集。

Using IXmlSerializable won't keep it from creating an assembly. In order to do that, in the project properties, look:

  1. On the Build tab for C#, there's a "Generate Serialization Assembly" dropdown.
  2. On the Compile tab for VB.NET, there's an "Advanced Compile Options" button. Click it, and you'll find a "Generate Serialization Assemblies" dropdown.

In both cases, you can set it to "Off" and manually use the XML Serializer Generator Tool (Sgen.exe) to generate your assemblies.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文