DataTable statique GetTable ()
{
//
// ici nous créons un DataTable avec quatre colonnes.
//
Table de DataTable = nouveau DataTable () ;
table. Columns.Add (« dosage », typeof (international));
table. Columns.Add (« drogue », typeof (corde));
table. Columns.Add (« patient », typeof (corde));
table. Columns.Add (« date », typeof (date-heure));
//
// ici nous additionnons cinq DataRows.
//
table. Rows.Add (25, « Indocin », « David », DateTime.Now) ;
table. Rows.Add (50, « Enebrel », « Sam », DateTime.Now) ;
table. Rows.Add (10, « hydralazine », « Christoff », DateTime.Now) ;
table. Rows.Add (21, « Combivent », « Janet », DateTime.Now) ;
table. Rows.Add (100, « Dilantin », « Melanie », DateTime.Now) ;
table de retour ;
}
} class= >
" clair " de