Пример #1
0
 private static Object SomeMethod()
 {
     // Эта сборка Wintellect получает доступ к внутреннему типу
     // другой сборки, как если бы он был открытым
     SomeInternalType sit = new SomeInternalType();
     return sit;
 }
Пример #2
0
            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);
            }
Пример #3
0
        private static Object SomeMethod()
        {
            // Эта сборка Wintellect получает доступ к внутреннему типу
            // другой сборки, как если бы он был открытым
            SomeInternalType sit = new SomeInternalType();

            return(sit);
        }
Пример #4
0
 protected void Page_Load(object sender, EventArgs e)
 {
     SomeInternalType s = new SomeInternalType();
 }