/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/xUnit/Asserts/PriorityAttribute.cs
18 строк
388 B
xtqqczze
Enable CA1050: Declare types in namespaces (#13872)
26 окт 2020, 20:34
Не верифицирован
26 окт 2020, 20:34
9932560
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; namespace PSTests.Internal { [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)] public class PriorityAttribute : Attribute { public PriorityAttribute(int priority) { Priority = priority; } public int Priority { get; } } }