/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/CSharp/Portable/BoundTree/BoundMethodDefIndex.cs
16 строк
444 B
Rikki Gibson
Do not use a constructed method symbol in a BoundMethodDefIndex (#79211)
04 июл 2025, 05:50
Не верифицирован
04 июл 2025, 05:50
be807aa
Код
Авторство
О чём код?
// 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 System.Diagnostics; namespace Microsoft.CodeAnalysis.CSharp { internal partial class BoundMethodDefIndex { private partial void Validate() { Debug.Assert(Method.IsDefinition); } } }