System.Configuration.MgmtConfigurationRecord.AppendAttribute C# (CSharp) Method

AppendAttribute() private method

private AppendAttribute ( StringBuilder sb, string key, string value ) : void
sb System.Text.StringBuilder
key string
value string
return void
        private void AppendAttribute(StringBuilder sb, string key, string value) {
            sb.Append(key);
            sb.Append("=\"");
            sb.Append(value);
            sb.Append("\" ");
        }