/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/System.Management.Automation/FormatAndOutput/common/DisplayDatabase/displayDescriptionDataMethods.cs
35 строк
811 B
Steve Lee
Update copyright notice to latest guidance (#12190)
24 мар 2020, 21:08
Не верифицирован
24 мар 2020, 21:08
b7cb335
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.PowerShell.Commands.Internal.Format { #region Type Info Database internal sealed partial class TypeInfoDataBase { } #endregion #region View Definitions: common data internal sealed partial class AppliesTo { #if false internal void AddAppliesToTypeGroup (string typeGroupName) { TypeGroupReference tgr = new TypeGroupReference (); tgr.name = typeGroupName; this.referenceList.Add (tgr); } #endif internal void AddAppliesToType(string typeName) { TypeReference tr = new TypeReference(); tr.name = typeName; this.referenceList.Add(tr); } } #endregion }