Пример #1
0
        public void print()
        {
            AssemblyOneClassII A1 = new AssemblyOneClassII();

            A1.sampleMethod();
            Console.WriteLine("This is from Assembly Two");

            AssemblyTwoClassI A2 = new AssemblyTwoClassI();

            Console.WriteLine(A2.Name);
        }
Пример #2
0
 static void Main(string[] args)
 {
     AssemblyOneClassII.SampleMethod();
     Console.ReadLine();
 }