Files
nadekobot/src/NadekoBot/Services/Settings/SettingParser.cs
2021-12-29 06:07:16 +01:00

8 lines
317 B
C#

#nullable disable
namespace NadekoBot.Services;
/// <summary>
/// Delegate which describes a parser which can convert string input into given data type
/// </summary>
/// <typeparam name="TData">Data type to convert string to</typeparam>
public delegate bool SettingParser<TData>(string input, out TData output);