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.
C#またはVBで、リストビュー項目コレクションをリストに追加するにはどうすればよいですか?ループを使用して反復することはありませんか?
理由は、これを改善したいからです:
For Each Item As ListViewItem In ListView.Items List.Add(Item) Next
このようなものに:
List.AddRange(DirectCast(ListView.Items, ...))