Ejemplo n.º 1
0
        public static string InstanceNewAndNewImplementFromInterface(int value)
        {
            IInterfaceType1 inst = new InstanceNewAndNewImplementType();

            return(inst.GetStringFromInt32(value));
        }
Ejemplo n.º 2
0
        public static string InstanceNewAndNewImplement(int value)
        {
            var inst = new InstanceNewAndNewImplementType();

            return(inst.GetStringFromInt32(value));
        }