コード例 #1
0
        public static string InstanceNewAndNewImplementFromInterface(int value)
        {
            IInterfaceType1 inst = new InstanceNewAndNewImplementType();

            return(inst.GetStringFromInt32(value));
        }
コード例 #2
0
        public static string InstanceNewAndNewImplement(int value)
        {
            var inst = new InstanceNewAndNewImplementType();

            return(inst.GetStringFromInt32(value));
        }