The StringBuilder extension in C # supports the chain method,

Source: Internet
Author: User

The StringBuilder extension in C # supports the chain method,

 

This article expands StringBuilder to support the chained method.

Here is a method for generating select elements based on a set of key values.

 

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();}

 

Above,

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

These two statements can be encapsulated to extend StringBuilder.


Change

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();}

 

Above,

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

The preceding statement can be encapsulated to extend 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();}

 

Or

 

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();}

 

Above,

Foreach (var opt in options)
{
Html. AppendFormattedLine ("\ t <option value = \" {0} \ ">{1} </option>", opt. Key, opt. Value );
}

Encapsulate traversal statements, expand StringBuilder, and finally:

 

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();}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.