大家好!
我正在开发一个 .Net Core 类库项目,但我必须使用 .Net Framework DLL 中的一个名为 的类,该类System.Security在 Core 中不可用。(该类是SignedXml.csinSystem.Security.Cryptography.Xml命名空间。-是的,我知道 Core 中也存在命名空间和类,但SignedXml不一样,有一些私有字段丢失(m_refProcessed等m_refLevelCache)。)
我必须使用旧课程。
是否有任何解决方案可以System.Security在我的核心项目中导入并扩展SignedXml类?或者只是导入SignedXml类?
谢谢!