Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
VB.NETでURLの文字列値をタイプURIに変換する最も簡単な方法は何ですか?
はい。
Dim myUri As New Uri("http://www.contoso.com/")
文字列を変数に置き換えるだけで、準備は完了です。
文字列をコンストラクターに渡すだけです。
Dim url As String = "http://test.com" Dim uri As New Uri(url)