/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/CSharp/Portable/Syntax/ParameterDeclarationSyntax.cs
15 строк
590 B
Julien Couvreur
Extensions parsing (#76867)
27 янв 2025, 21:27
Не верифицирован
27 янв 2025, 21:27
0804634
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using Microsoft.CodeAnalysis.CSharp.Syntax; namespace Microsoft.CodeAnalysis.CSharp { public partial class SyntaxFactory { /// <summary>Creates a new ParameterSyntax instance.</summary> public static ParameterSyntax Parameter(SyntaxToken identifier) => SyntaxFactory.Parameter(default, default(SyntaxTokenList), null, identifier, null); } }