首页 > 其他 > 详细

泛型函数

时间:2015-11-17 12:29:04      阅读:251      评论:0      收藏:0      [点我收藏+]

using System;
using System.Collections.Generic;

public class MyClass
{
static void DoStuff<T,S>(T t,S s) where T:MyClass
{
Console.WriteLine("T:{0}",t);
Console.WriteLine("S:{0}",s);
}

public static void RunSnippet()
{

DoStuff<MyClass,string>(new MyClass(),"ffff");
}

#region Helper methods

public static void Main()
{
try
{
RunSnippet();
}
catch (Exception e)
{
string error = string.Format("---\nThe following error occurred while executing the snippet:\n{0}\n---", e.ToString());
Console.WriteLine(error);
}
finally
{
Console.Write("Press any key to continue...");
Console.ReadKey();
}
}

private static void WL(object text, params object[] args)
{
Console.WriteLine(text.ToString(), args);
}

private static void RL()
{
Console.ReadLine();
}

private static void Break()
{
System.Diagnostics.Debugger.Break();
}

#endregion
}

泛型函数

原文:http://www.cnblogs.com/jinweijie0527/p/4971013.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!