码迷,mamicode.com
首页 > Windows程序 > 详细

C#泛型对类型参数的推断

时间:2016-10-21 01:16:10      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 泛型对类型参数的推断
{
    class Program
    {
        public static void genericMtthod<T>( T t1,  T t2)
        {
            T temp = t1;
            t1 = t2;
            t2 = temp;
            
        }
        static void Main(string[] args)
        {
            int a = 1, b = 2;
            genericMtthod( a,  b);
            Console.WriteLine("a:" + a);
            Console.WriteLine("b:" + b);

            string c="c",d="d";
            genericMtthod( c,  d);
            Console.WriteLine("c:" + c);
            Console.WriteLine("d:" + d);

            Console.ReadKey();
        }

    }
}

运行效果图:

技术分享

 

C#泛型对类型参数的推断

标签:

原文地址:http://www.cnblogs.com/xiefengdaxia123/p/5983035.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!