コード例 #1
0
ファイル: TypeImplements.cs プロジェクト: molongwudi/IL2C
        public static string InstanceMultipleCombined1ImplementCombination2FromInterface1(int value)
        {
            IInterfaceType1 inst = new InstanceMultipleCombinedImplementCombinationType2();

            return(inst.GetStringFromInt32(value));
        }
コード例 #2
0
ファイル: TypeImplements.cs プロジェクト: molongwudi/IL2C
        public static string InstanceMultipleCombined2ImplementCombination2FromInterface4(long value)
        {
            IInterfaceType4 inst = new InstanceMultipleCombinedImplementCombinationType2();

            return(inst.GetStringFromInt64(value));
        }
コード例 #3
0
ファイル: TypeImplements.cs プロジェクト: molongwudi/IL2C
        public static string InstanceMultipleCombinedImplementCombination2(int value)
        {
            var inst = new InstanceMultipleCombinedImplementCombinationType2();

            return(inst.GetStringFromInt32(value));
        }