如何创建动态类并将其添加到项目中
如何创建动态类并将其添加到项目(从中创建)?
我可以在项目的构建和重建中创建类吗?我的意思是我可以处理项目中的构建和重建事件吗?
谢谢
How I can Create a dynamic class and add it to the project(creating from)?
can I create class in Build and Rebuild of my project? I mean can I handle Build and Rebuild events in my project?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将静态文件添加到项目中,例如dynamicclass.cs,并在
Project/Properties/BuildEvents/Pre-build event command line
中修改其内容You can add a static file to your project, say dynamicclass.cs and modify its content in
Project/Properties/BuildEvents/Pre-build event command line
您可以创建动态程序集,然后使用反射器或更平滑的工具为其创建源。然后,您可以使用宏或插件将它们添加到您的项目中,或者修改 csproj 文件。
You can create dynamic assemblies and then use reflector or smoother tool to create source for them. You can then add them to your project using a macro or addin or modify the csproj file.