예제 #1
0
        public static string VirtualNewAndImplementFromInterface(int value)
        {
            IInterfaceType1 inst = new VirtualNewAndImplementType();

            return(inst.GetStringFromInt32(value));
        }
예제 #2
0
        public static string VirtualNewAndImplement(int value)
        {
            var inst = new VirtualNewAndImplementType();

            return(inst.GetStringFromInt32(value));
        }