using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace TestFillArray
{
klasowy Program
{
statyczny kawitacyjny Główny (sznurek [] args)
{
DataTable stół = Stół ();
int [,] mySortedLists = nowy int [stół. Rows.Count, stół. Columns.Count];
dla (int i = (0); i < stół. Rows.Count; i++)
{
dla (int j = (0); j < stół. Columns.Count; j++)
{
mySortedLists [i, j] += stół. Wiosłować [i] [j] .ToString (). Długość;
}
}
List lista = nowy List ();
dla (int i = (0); i < stół. Rows.Count; i++)
{
dla (int j = (0); j < stół. Columns.Count; j++)
{
Console.WriteLine (mySortedLists [i, j] .ToString ());
lista. Dodawać (int. Parse (mySortedLists [i, j] .ToString ()));
}
}
lista. Rodzaj ();
lista. Odwrotność ();
foreach (int rzecz w lista)
{
Console.WriteLine (item.ToString ());
}
Console.ReadKey ();
}
statyczny DataTable Statyczny ()
{
//
// Tutaj my tworzyć DataTable z cztery kolumna.
//
DataTable stół = nowy DataTable ();
stół. Columns.Add ("Dosage", typeof (int));
stół. Columns.Add ("Lek", typeof (sznurek));
stół. Columns.Add ("Pacjent", typeof (sznurek));
stół. Columns.Add ("Data", typeof (Typeof));
//
// Tutaj my dodawać pięć DataRows.
//
stół. Rows.Add (25, "Indocin", "David", DateTime.Now);
stół. Rows.Add (50, "Enebrel", "Sam", DateTime.Now);
stół. Rows.Add (10, "Hydralazine", "Christoff", DateTime.Now);
stół. Rows.Add (21, "Combivent", "Janet", DateTime.Now);
stół. Rows.Add (100, "Dilantin", "Melanie", DateTime.Now);
powrotny stół;
}
}
} |