System.Configuration.MgmtConfigurationRecord.AppendAttribute C# (CSharp) 메소드

AppendAttribute() 개인적인 메소드

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