C#中擴展StringBuilder支持鏈式方法

来源:http://www.cnblogs.com/darrenji/archive/2016/03/13/5271696.html
-Advertisement-
Play Games

  本篇體驗擴展StringBuilder使之支持鏈式方法。這裡有一個根據鍵值集合生成select元素的方法。     以上,html.AppendFormat("<select id=\"{0}\" name=\"{0}\">", id);html.AppendLine();可以對這兩個語句封裝,


 

本篇體驗擴展StringBuilder使之支持鏈式方法。

這裡有一個根據鍵值集合生成select元素的方法。

 

private static string BuilderSelectBox(IDictionary<int, string> options, string id, bool includeUnknown)
{
    var html = new StringBuilder();
    html.AppendFormat("<select id=\"{0}\" name=\"{0}\">", id);
    html.AppendLine();
    
    if(includeUnknown)
    {
        html.AppendLine("\t<option>Unknown</option>");
    }
    
    foreach(var opt in options)
    {
        html.AppendFormat("\t<option value=\"{0}\">{1}</option>", opt.Key, opt.Value);
        html.AppendLine();
    }
    
    html.AppendLine("</select>");
    
    return html.ToString();
}

 

以上,

html.AppendFormat("<select id=\"{0}\" name=\"{0}\">", id);
html.AppendLine();

可以對這兩個語句封裝,擴展StringBuilder。
            
            
改成

public static class StringBuilderExtensions
{
    public static StringBuilder AppendFormattedLine(this StringBuilder @this, string format, prams object[] args) => @this.AppendFormat(format, args).AppendLine();
}

private static string BuilderSelectBox(IDictionary<int, string> options, string id, bool includeUnknown)
{
    var html = new StringBuilder()
        .AppendFormattedLine("<select id=\"{0}\" name=\"{0}\">", id);

    
    if(includeUnknown)
    {
        html.AppendLine("\t<option>Unknown</option>");
    }
    
    foreach(var opt in options)
    {
        html.AppendFormattedLine("\t<option value=\"{0}\">{1}</option>", opt.Key, opt.Value);
        html.AppendLine();
    }
    
    html.AppendLine("</select>");
    
    return html.ToString();
}

 

以上,

    if(includeUnknown)
    {
        html.AppendLine("\t<option>Unknown</option>");
    }

可以對如上語句進行封裝,繼續擴展StringBuilder.

 

public static class StringBuilderExtensions
{
    public static StringBuilder AppendFormattedLine(this StringBuilder @this, string format, prams object[] args) => @this.AppendFormat(format, args).AppendLine();
    
    public static StringBuilder AppendLineWhen(this StringBuilder @this, Func<bool> predicate, string value) =>
    predicate() 
        ? @this.AppendLine(value)
        : @this;
    
}

private static string BuilderSelectBox(IDictionary<int, string> options, string id, bool includeUnknown)
{
    var html = new StringBuilder()
        .AppendFormattedLine("<select id=\"{0}\" name=\"{0}\">", id)
        .AppendLineWhen(() => includeUnknown, "\t<option>Unknown</option>");

    
    foreach(var opt in options)
    {
        html.AppendFormattedLine("\t<option value=\"{0}\">{1}</option>", opt.Key, opt.Value);
    }
    
    html.AppendLine("</select>");
    
    return html.ToString();
}

 

 

public static class StringBuilderExtensions
{
    public static StringBuilder AppendFormattedLine(this StringBuilder @this, string format, prams object[] args) => @this.AppendFormat(format, args).AppendLine();
    
    public static StringBuilder AppendLineWhen(this StringBuilder @this, Func<bool> predicate, string value) =>
    predicate() 
        ? @this.AppendLine(value)
        : @this;
        
    public static StringBuilder AppendWhen(this StringBuilder @this, Func<bool> predicate, Func<StringBuilder, StringBuilder> fn) =>
    predicate()
        ? fn(@this)
        : @this;
    
}

private static string BuilderSelectBox(IDictionary<int, string> options, string id, bool includeUnknown)
{
    var html = new StringBuilder()
        .AppendFormattedLine("<select id=\"{0}\" name=\"{0}\">", id)
        .AppendWhen(
            () => includeUnknown,
            sb => sb.AppendLine("\t<option>Unknown</option>")
        );

    
    foreach(var opt in options)
    {
        html.AppendFormattedLine("\t<option value=\"{0}\">{1}</option>", opt.Key, opt.Value);
    }
    
    html.AppendLine("</select>");
    
    return html.ToString();
}

 

以上,

    foreach(var opt in options)
    {
        html.AppendFormattedLine("\t<option value=\"{0}\">{1}</option>", opt.Key, opt.Value);
    }
    
對遍歷語句進行封裝,擴展StringBuilder,最終:   

 

public static class StringBuilderExtensions
{
    public static StringBuilder AppendFormattedLine(this StringBuilder @this, string format, prams object[] args) => @this.AppendFormat(format, args).AppendLine();
    
    public static StringBuilder AppendLineWhen(this StringBuilder @this, Func<bool> predicate, string value) =>
    predicate() 
        ? @this.AppendLine(value)
        : @this;
        
    public static StringBuilder AppendWhen(this StringBuilder @this, Func<bool> predicate, Func<StringBuilder, StringBuilder> fn) =>
    predicate()
        ? fn(@this)
        : @this;
        
    public static StringBuilder AppendSequence<T>(this StringBuilder @this, IEnumerable<T> seq, Func<StringBuilder, T, StringBuilder> fn) => seq.Aggregate(@this, fn);
    
}

private static string BuilderSelectBox(IDictionary<int, string> options, string id, bool includeUnknown)
{
    var html = new StringBuilder()
        .AppendFormattedLine("<select id=\"{0}\" name=\"{0}\">", id)
        .AppendWhen(
            () => includeUnknown,
            sb => sb.AppendLine("\t<option>Unknown</option>")
        )
        .AppendSequence(options, (sb, opt) => sb.AppendFormattedLine("\t<option value=\"{0}\">{1}</option>", opt.Key, opt.Value))
        .AppendLine("</select>")
        .ToString();
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 如果是直接執行SQL語句時,事務很好處理,對於大多數的Erp應用,不能能用SQL來處理數據,所以更新DataSet更為常用,更新單個的DataSet也非常簡單,不需要事務的處理,給多個DataSet增加事務多數應用於分散式的程式代碼中,下麵為在Webservice中更新Winform傳遞過來的經過壓
  • 一、什麼是特性路由? 特性路由是指將RouteAttribute或自定義繼承自RouteAttribute的特性類標記在控制器或ACTION上,同時指定路由Url字元串,從而實現路由映射,相比之前的通過Routes.Add或Routes.MapHttpRoute來講,更加靈活與直觀。 若要使用特性路
  • 一、開發環境 操作系統:Win10 編譯器:VS2013 framework版本:.net 4.5 Spring版本:1.3.1 二、涉及程式集 Spring.Core.dll Common.Loggin.dll 三、項目結構 四、開發過程 1.新建一個介面文件 namespace SpringNe...
  •    
  • 屬性分為無參屬性和有參屬性(即索引器)。 屬性相對於欄位的優點不僅僅是為了封裝,還可以在讀寫的時候做一些額外操作,緩存某些值或者推遲創建一些內部對象,也適用於以線程安全的方式訪問欄位。 話說最基本的屬性就不講了,太平常了。 基本上很多文章都是講屬性的好處的,所以下麵就講一下屬性的不足: 屬性不能作為
  • C#語法中有個特別的關鍵字yield, 它是乾什麼用的呢? 來看看專業的解釋: yield 是在迭代器塊中用於向枚舉數對象提供值或發出迭代結束信號。它的形式為下列之一:yield return <expression>;yield break   看如下例子:         上面的例子是實現了一個
  • GC記憶體回收的時機的確具有不確定性,所以GC不是救命稻草,請一定不要忘記發佈程式的時候,使用Release編譯模式!
  • 給Model中變數賦初始值就OK了。
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...