/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Microsoft.PowerShell.Commands.Utility/commands/utility/PSBreakpointAccessorCommandBase.cs
19 строк
548 B
xtqqczze
Remove unnecessary usings part 4 (#14023)
16 ноя 2020, 17:54
Не верифицирован
16 ноя 2020, 17:54
fcd9e37
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.PowerShell.Commands { /// <summary> /// Base class for Get/Set-PSBreakpoint. /// </summary> public abstract class PSBreakpointAccessorCommandBase : PSBreakpointCommandBase { #region strings internal const string CommandParameterSetName = "Command"; internal const string LineParameterSetName = "Line"; internal const string VariableParameterSetName = "Variable"; #endregion strings } }