比较两个程序集并发现变化?
我有两个同名的程序集。另一个是在 15 天后创建的。我如何知道第二个程序集中的所有更改,例如方法、类、命名空间(即)有关 XML 文件格式更改的所有内容。
是否有任何工具可用于查找程序集中的更改?
I have two assemblies with the same name. Another one was created after the 15 days of other. How do i what the what are all the changes in the second assemly like method,class,namespace (i,e) everything about the changes in the format of XML file.
Is any tool is avaliable for find the changes in the assemblies ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它称为源代码控制存储库,用于存储源代码。它们中的大多数处理历史记录并允许您比较提交之间的差异。如果您不使用源代码管理(也许是时候开始使用源代码管理了),您可以 ildasm 程序集并使用您最喜欢的 diff 工具。
Yes, it is called source control repository where your source code is stored. Most of them handle history and allow you to compare differences between commits. If you don't use source control (maybe it's time to start using one) you could ildasm the assemblies and use your favorite diff tool.