コード例 #1
0
 public List <Istatistik_> IstatistikYazdir()
 {
     try
     {
         SqlDataReader reader = dll.IstatistikYazdir();
         while (reader.Read())
         {
             ListIstatistik.Add(new Istatistik_()
             {
                 Ay           = reader.GetInt32(0),
                 KelimeSayisi = reader.GetInt32(1)
             });
         }
         reader.Close();
     }
     catch (Exception) { throw; }
     finally { dll.BaglantiAyarla(); }
     return(ListIstatistik);
 }