Add docs to argBuilder.Parse

This commit is contained in:
Mino 2020-03-28 18:02:32 +09:00
parent 5dd8491d13
commit 666f7df738

View file

@ -12,9 +12,14 @@ namespace Dalamud.Bootstrap.SqexArg
m_dict = new Dictionary<string, string>();
}
/// <summary>
/// Creates an argument builder from the argument (e.g. /T =1234)
/// </summary>
/// <param name="argument"></param>
/// <returns></returns>
public static ArgumentBuilder Parse(string argument)
{
throw new NotImplementedException("TODO");
}
public ArgumentBuilder Add(string key, string value)