EscapeWithQuotesIfNeeded() 개인적인 정적인 메소드

private static EscapeWithQuotesIfNeeded ( string name, string value ) : string
name string
value string
리턴 string
예제 #1
0
 public void RemovePropertyValue(string name, string value)
 {
     if (!this.entries.ContainsKey(name))
     {
         return;
     }
     this.entries[name].RemoveValue(XCBuildConfigurationData.EscapeWithQuotesIfNeeded(name, value));
 }
예제 #2
0
 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);
     }
 }
예제 #3
0
 public void SetProperty(string name, string value)
 {
     this.entries[name] = BuildConfigEntryData.FromNameValue(name, XCBuildConfigurationData.EscapeWithQuotesIfNeeded(name, value));
 }