Beispiel #1
0
        private static void Example8()
        {
            var baseScope = new BaseScope();
            baseScope.ICanBeTaken = 4;
            baseScope.GetAllOfThem();

            var assemblyScope = new AssemblyScope();
            assemblyScope.GetWhatYouCan();

            var inheritanceScope = new InheritanceScope();
            inheritanceScope.GetSomeOfThem();
        }