Ejemplo n.º 1
0
        public static string InstanceMultipleImplementFromInterface2(long value)
        {
            IInterfaceType2 inst = new InstanceMultipleImplementType();

            return(inst.GetStringFromInt64(value));
        }
Ejemplo n.º 2
0
        public static string InstanceMultipleImplementFromInterface1(int value)
        {
            IInterfaceType1 inst = new InstanceMultipleImplementType();

            return(inst.GetStringFromInt32(value));
        }
Ejemplo n.º 3
0
        public static string InstanceMultipleImplement2(long value)
        {
            var inst = new InstanceMultipleImplementType();

            return(inst.GetStringFromInt64(value));
        }
Ejemplo n.º 4
0
        public static string InstanceMultipleImplement1(int value)
        {
            var inst = new InstanceMultipleImplementType();

            return(inst.GetStringFromInt32(value));
        }