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

C# 拓展方法实例

时间:2015-01-28 17:17:21      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

namespace BenJi
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("你要调试程序吗?yes/no");

string u = Console.ReadLine();
if (u == "yes")
{
string str = "1234567890";

Console.WriteLine(str.top6());  //输出  123456

}
Console.ReadLine();
}
}
public static class MyExtensions
{
public static string top6(this String str)
{
return str.Substring(0,6);

}
}
}

C# 拓展方法实例

标签:

原文地址:http://www.cnblogs.com/yangjinwang/p/4256087.html

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