We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e11aa4 commit 339369eCopy full SHA for 339369e
docs/index.md
@@ -34,11 +34,11 @@ Ported from [qs](https://www.npmjs.com/package/qs) for JavaScript.
34
using QsNet;
35
36
// Decode
37
-var obj = Qs.Decode("foo[bar]=baz&foo[list][]=a&foo[list][]=b");
+Dictionary<string, object?> obj = Qs.Decode("foo[bar]=baz&foo[list][]=a&foo[list][]=b");
38
// -> { "foo": { "bar": "baz", "list": ["a", "b"] } }
39
40
// Encode
41
-var qs = Qs.Encode(new Dictionary<string, object?>
+string qs = Qs.Encode(new Dictionary<string, object?>
42
{
43
["foo"] = new Dictionary<string, object?> { ["bar"] = "baz" }
44
});
0 commit comments