I have a listview with 4 columns.
i added a value in the 1st column like this:

listview1.Items.add("somevalue");

how can i add subitems to this:
I know it's possible in VB.NET to do this with
listview1.item(0).subitems(1).add("blabla")

but this doesn't seem to be possible in C#

anyone knows about this?