mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-18 13:57:43 +01:00
WIP
This commit is contained in:
parent
16d806a2bb
commit
1775122d03
3 changed files with 41 additions and 16 deletions
|
|
@ -26,6 +26,19 @@ namespace Dalamud.Bootstrap.SqexArg
|
|||
return this;
|
||||
}
|
||||
|
||||
public bool ContainsKey(string key) => m_dict.ContainsKey(key);
|
||||
|
||||
public bool ContainsValue(string value) => m_dict.ContainsValue(value);
|
||||
|
||||
public ArgumentBuilder Remove(string key)
|
||||
{
|
||||
m_dict.Remove(key);
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
public bool TryRemove(string key) => m_dict.Remove(key);
|
||||
|
||||
private static void Write(StringBuilder buffer, string key, string value)
|
||||
{
|
||||
var escapedKey = EscapeValue(key);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue