From 48b8469c00446d9b06af4027f4ea3c373b64f8e2 Mon Sep 17 00:00:00 2001 From: Misha133 Date: Sat, 5 Nov 2022 21:57:41 +0300 Subject: [PATCH] add a note to IF docs --- docs/guides/int_framework/intro.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/guides/int_framework/intro.md b/docs/guides/int_framework/intro.md index 21ea365de..4bee07e94 100644 --- a/docs/guides/int_framework/intro.md +++ b/docs/guides/int_framework/intro.md @@ -208,6 +208,9 @@ You may use as many wild card characters as you want. Unlike button interactions, select menu interactions also contain the values of the selected menu items. In this case, you should structure your method to accept a string array. +> [!NOTE] +> Use arrays of `IUser`, `IChannel`, `IRole`, `IMentionable` or their implementations to get data from a select menu with respective type. + [!code-csharp[Dropdown](samples/intro/dropdown.cs)] > [!NOTE]