在 PowerShell 中深度复制字典(哈希表)
Clone()
仅执行浅表复制,并且在 C# 中似乎没有直接的方法可以在没有一些样板代码包装序列化的情况下执行此操作(如何在 .NET 中对对象进行深层复制(特别是 C#)?< /a>)。有没有一种简单的方法可以在 Powershell 中执行此操作而无需引用外部库?
Clone()
only does a shallow copy and it seems there is no straightforward way to do this in C# without a bit of boilerplate code wrapping serialization (How do you do a deep copy of an object in .NET (C# specifically)?). Is there a simple way to do this in Powershell without referencing external libraries ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您启动 shell 时,您需要的所有库都在那里,因此只需根据您的链接实现深层复制即可。
All the libraries you need are there when you start the shell so it's just to implement the deep copy as per your link.