Files
Discord.Net/docs/guides/polls/samples/get-poll-voters.cs
Mihail Gribkov 3e7ab0915f [Docs] Document Polls (#2930)
* poll docs

* oopsie
2024-05-27 14:50:38 +03:00

4 lines
234 B
C#

// Get the id of the first answer in the poll
var answerId = message.Poll.Answers.First().AnswerId;
// Get the list of voters who voted for the first answer
var voters = await message.GetPollAnswerVotersAsync(answerId).FlattenAsync();