/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
samples/snippets/visualbasic/VS_Snippets_CLR_System/System.Runtime.BypassNGenAttribute/vb/Optout1.vb
22 строки
482 B
Next Turn
Format codes based on .editorconfig, Part 14 (#18960)
16 июн 2020, 14:59
Не верифицирован
16 июн 2020, 14:59
a0b8dc3
Код
Авторство
О чём код?
' Visual Basic .NET Document Option Strict On ' <Snippet2> Imports System.Runtime Public Class ExampleClass <BypassNGen> Public Sub ToJITCompile() End Sub End Class ' </Snippet2> ' <Snippet1> Namespace System.Runtime <AttributeUsage(AttributeTargets.Method Or AttributeTargets.Constructor Or AttributeTargets.Property)> Public Class BypassNGenAttribute : Inherits Attribute End Class End Namespace ' </Snippet1>