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.
My.Resources に保存されているファイルから List (Of string ) を作成したい。
私が使用したコードはこれです:
Dim L As New List(Of String) From {(My.Resources.html_blu)}
しかし、これは機能しません。
誰でも私を助けることができますか??
リストに行を入れたいと思います。これを試してください:
Dim L As New List(Of String)(My.Resources.html_blu.Split(Environment.NewLine()))