EscapeWithQuotesIfNeeded() private static méthode

private static EscapeWithQuotesIfNeeded ( string name, string value ) : string
name string
value string
Résultat string
 public void RemovePropertyValue(string name, string value)
 {
     if (!this.entries.ContainsKey(name))
     {
         return;
     }
     this.entries[name].RemoveValue(XCBuildConfigurationData.EscapeWithQuotesIfNeeded(name, value));
 }
 public void AddProperty(string name, string value)
 {
     if (this.entries.ContainsKey(name))
     {
         this.entries[name].AddValue(XCBuildConfigurationData.EscapeWithQuotesIfNeeded(name, value));
     }
     else
     {
         this.SetProperty(name, value);
     }
 }
 public void SetProperty(string name, string value)
 {
     this.entries[name] = BuildConfigEntryData.FromNameValue(name, XCBuildConfigurationData.EscapeWithQuotesIfNeeded(name, value));
 }