Fix Samples on Docs; Fix Links on Docs; add FAQ page to docs

This commit is contained in:
Christopher F
2016-07-29 20:48:33 -04:00
parent dc58f92333
commit af4ede31b8
13 changed files with 51 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
public async Task ModifyStatus()
{
await (await _client.GetCurrentUserAsync()).ModifyStatusAsync(x =>
{
x.Status = UserStatus.Idle;
x.Game = new Game("Type !help for help");
});
}