/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/Overview/vb/ctor1.vb
26 строк
598 B
Genevieve Warren
Move member remarks (#39270)
30 янв 2024, 00:43
Не верифицирован
30 янв 2024, 00:43
6c88824
Код
Авторство
О чём код?
Imports System.Resources Public Module Example2 Public Sub Main() CallCtor1() CallCtor2() End Sub Sub CallCtor1() ' <Snippet1> Dim rm As New ResourceManager("MyCompany.StringResources", GetType(Example2).Assembly) ' </Snippet1> End Sub Sub CallCtor2() ' <Snippet2> Dim rm As New ResourceManager(GetType(MyCompany.StringResources)) ' </Snippet2> End Sub End Module Namespace MyCompany Class StringResources End Class End Namespace