码迷,mamicode.com
首页 > 其他好文 > 详细

扩展方法

时间:2014-06-10 12:53:48      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

利用扩展方法,实现参数验证。

bubuko.com,布布扣
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace 扩展方法
 8 {
 9     class Program
10     {
11         static void Main(string[] args)
12         {
13             string name = Console.ReadLine();
14             name.Required();
15             Console.WriteLine("你好," + name);
16             Console.ReadKey();
17         }
18     }
19 
20     public static class Validate
21     {
22         public static void Required(this string data)
23         {
24             if (string.IsNullOrEmpty(data))
25             {
26                 //Console.WriteLine("姓名不能为空");
27                 throw new ArgumentException("参数不能为空。");                
28             }
29         }
30     }
31 }
bubuko.com,布布扣

 

扩展方法,布布扣,bubuko.com

扩展方法

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/David-Huang/p/3778852.html

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