C#擴充功能# #入門小範例
擴充功能方法的定義:
#l## 必須是靜態類,靜態方法#l## 第一個參數帶有關鍵字
”this”
#程式碼說明:這裡的範例是寫了一個靜態類,myExtension,#一個擴充方法Add
,表示所有的INT類型的數字都將具有呼叫這個Add方法的能力,條件是引入MyExtension的命名空間。
下面讓我們來看看用法:
寫了一個延伸string的方法,可以將英文標準化,例如 hEllo WORld 傳遞進去 會輸出,Hello World
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace wpfLab1 { public static class StrExtensenClass { public static string GetNormalFormat(this string s) { s = RemoveExtraSpace(s); string[] words = s.Split(' '); string ret = ""; foreach (var word in words) { ret += StrFstChrUpr(word) + " "; } return ret; } public static string RemoveExtraSpace(this string s) { if (s == null || s.Length <= 1) { return s; } bool lastChrIsSpace = false; string ret = ""; foreach (var chr in s) { if (chr == ' ') { if (lastChrIsSpace) { continue; } else { lastChrIsSpace = true; ret += chr; } } else { ret += chr; lastChrIsSpace = false; } } return ret; } private static string StrFstChrUpr(string s) { if (s == null || s.Length < 1) { return s; } string lowerStr = s.ToLower().Remove(0, 1); string upperStr = Char.ToUpper(s[0]).ToString(); return (upperStr + lowerStr); } } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using wpfLab1; namespace wpfLab1 { /// <summary> /// MainWindow.xaml 的交互逻辑 /// </summary> public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void btnHello_Click(object sender, RoutedEventArgs e) { string s = "hEllo wOrLd, hi, world , aa dd dw WWdd a "; lblHello.Content = s.GetNormalFormat(); } } }