Beispiel #1
0
        private static void DoSomething2_0_0_0(int n)
        {
            SomeLibraryClass someLibraryObject = new SomeLibraryClass();

            someLibraryObject.FirstMethod(n);
            someLibraryObject.SecondMethodThatDoesNotExistInTheFirstVersion(n);
        }
Beispiel #2
0
        private static void DoSomething1_0_0_0(int n)
        {
            SomeLibraryClass someLibraryObject = new SomeLibraryClass();

            someLibraryObject.FirstMethod(n);
        }
 public SomeLibraryClassGateway(SomeLibraryClass slc)
 {
     this.slc = slc;
 }