/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Backend/Commands/CommandContext.cs
11 строк
289 B
Ivan Kozhin
Capture current variables scope for Select
15 янв 2024, 19:12
15 янв 2024, 19:12
45137db
Код
Авторство
О чём код?
namespace QueryCat.Backend.Commands; internal class CommandContext { private static int _nextId; /// <summary> /// The identifier used to distinguish command contexts between each other. /// </summary> internal int Id { get; } = Interlocked.Increment(ref _nextId); }