Example #1
0
        public static string InstanceImplementFromInterface(int value)
        {
            IInterfaceType1 inst = new InstanceImplementType();

            return(inst.GetStringFromInt32(value));
        }
Example #2
0
        public static string InstanceImplement(int value)
        {
            var inst = new InstanceImplementType();

            return(inst.GetStringFromInt32(value));
        }