private static Object SomeMethod() { // Эта сборка Wintellect получает доступ к внутреннему типу // другой сборки, как если бы он был открытым SomeInternalType sit = new SomeInternalType(); return sit; }
private static Object SomeMethod() { // This "Wintellect" assembly accesses the other assembly's // internal type as if it were a public type SomeInternalType sit = new SomeInternalType(); return(sit); }
private static Object SomeMethod() { // Эта сборка Wintellect получает доступ к внутреннему типу // другой сборки, как если бы он был открытым SomeInternalType sit = new SomeInternalType(); return(sit); }
protected void Page_Load(object sender, EventArgs e) { SomeInternalType s = new SomeInternalType(); }