mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
8 lines
317 B
C#
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); |