如何在c#中的字符串生成器中编写此格式

时间:2016-07-21 13:12:08

标签: c# xml

我的xml文件属性如下:

 <Attributes>
        public function attr($attr, $value) {
            $this->attributes[$attr] = $value;
            return $this;
        }
      </Attributes>

我来自c#enter image description here

如何从图像

编写此功能
function ajaxSettings($value){
  return $this -> ajaxSettings = $value;
}

1 个答案:

答案 0 :(得分:0)

要使用StringBuilder&#39; AppendFormat,您可以使用标准string formatting notation在字符串中插入一个或多个值:

var sb = new StringBuilder();

var world = "World";

sb.AppendFormat("Hello {0}", world);

var helloWorld = sb.ToString(); // returns "Hello World"