共用方式為


編譯器警告 (層級 3) CS1700

更新:2007 年 11 月

錯誤訊息

組件參考 Assembly Name 無效,無法解析

這個警告指出未正確指定屬性 (Attribute),例如 InternalsVisibleToAttribute

如需詳細資訊,請參閱 Friend 組件 (C# 程式設計手冊)

範例

下列範例會產生 CS1700。

// CS1700.cs
// compile with: /target:library
using System.Runtime.CompilerServices;
[assembly:InternalsVisibleTo("app2, Retargetable=f")]   // CS1700
[assembly:InternalsVisibleTo("app2")]   // OK