更新:2007 年 11 月
错误消息
友元程序集引用“reference”无效。不能在 InternalsVisibleTo 声明中指定版本、区域性、公钥标记或处理器体系结构。不能在友元程序集引用中添加版本区域性。分部类应对友元程序集可见。
示例
下面的示例生成 CS1725。
复制代码 | |
---|---|
// CS1725.cs // compile with: /target:library using System.Runtime.CompilerServices; [assembly:InternalsVisibleTo("partial01,version=1.1.0.0")] // CS1725 // try the following line instead // [assembly:InternalsVisibleTo("partial01")] partial class TestClass { public static string strBar = "my string"; } |