Fix Samples on Docs; Fix Links on Docs; add FAQ page to docs
This commit is contained in:
7
docs/guides/samples/faq/send_message.cs
Normal file
7
docs/guides/samples/faq/send_message.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
public async Task SendMessageToChannel(ulong ChannelId)
|
||||
{
|
||||
var channel = await _client.GetChannelAsync(ChannelId) as IMessageChannel;
|
||||
await channel?.SendMessageAsync("aaaaaaaaahhh!!!")
|
||||
/* ^ This question mark is used to indicate that 'channel' may sometimes be null, and
|
||||
in cases that it is null, we will do nothing here. */
|
||||
}
|
||||
Reference in New Issue
Block a user