Problem mit C# 2003 so gelöst, dies ist ein erster Test für ein Beispiel „Lottozahlen“:
// Ziehung erfolgreich
// Wir haben jetzt 52 Wochen á 6 Zahlen
// im zweidimensionalen Array iLotto[,]
// Jetzt füllen wir damit die ListView
// 52 Wochen Schleife
ListViewItem myItem;
// Create columns for the items and subitems.
// Set the view to show details.
Tabelle.View = View.Details;
// Allow the user to edit item text.
Tabelle.LabelEdit = true;
// Allow the user to rearrange columns.
Tabelle.AllowColumnReorder = true;
// Display check boxes.
Tabelle.CheckBoxes = false;
// Select the item and subitems when selection is made.
Tabelle.FullRowSelect = true;
// Display grid lines.
Tabelle.GridLines = true;
Tabelle.Columns.Add(„Zahl 1“, -2, HorizontalAlignment.Left);
Tabelle.Columns.Add(„Zahl 2“, -2, HorizontalAlignment.Left);
Tabelle.Columns.Add(„Zahl 3“, -2, HorizontalAlignment.Left);
Tabelle.Columns.Add(„Zahl 4“, -2, HorizontalAlignment.Left);
Tabelle.Columns.Add(„Zahl 5“, -2, HorizontalAlignment.Left);
Tabelle.Columns.Add(„Zahl 6“, -2, HorizontalAlignment.Left);
for( int x=0; x