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

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

            return(inst.GetStringFromInt32(value));
        }