.NET ez 2011-11-28
第一個參數加入this,就可以在對應型態的變數使用此擴充方法,在底層寫了這個靜態方法後,就可以像原本的分割一樣用str.Split(",")的方式執行字串分割。
public static string[] Split(this string Text, string Separator, StringSplitOptions SSO = StringSplitOptions.None) { return Text.Split(new string[] { Separator }, SSO); }
標籤: .NET
本文章網址:
https://www.ez2o.com/Blog/Post/csharp-Extension-Methods-String
https://www.ez2o.com/Blog/Post/3
https://www.ez2o.com/Blog/Post/csharp-Extension-Methods-String
https://www.ez2o.com/Blog/Post/3