我的xml文件属性如下:
<Attributes>
public function attr($attr, $value) {
$this->attributes[$attr] = $value;
return $this;
}
</Attributes>
如何从图像
编写此功能function ajaxSettings($value){
return $this -> ajaxSettings = $value;
}
答案 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"