Esempio n. 1
0
 /// <summary>
 /// Finds an option input that matches the option schema specified, or null if not found.
 /// </summary>
 public static CommandOptionInput?FindByOptionSchema(this IReadOnlyList <CommandOptionInput> optionInputs, CommandOptionSchema optionSchema) =>
 optionInputs.FirstOrDefault(o => optionSchema.MatchesAlias(o.Alias));