Advertisement
Stromeczik

mad graf

Oct 11th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.84 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.IO;
  7. using System.Data;
  8.  
  9. namespace ConsoleApplication1
  10. {
  11.     class Program
  12.     {
  13.         static void Main(string[] args)
  14.         {
  15.             var rows = File.ReadAllLines(@"C:\Users\str0315\Downloads\iris.csv").Select(l => l.Split(';').ToArray()).ToArray();
  16.             //Console.WriteLine(rows[1][3]);
  17.             //Console.ReadLine();
  18.            
  19.  
  20.             for(int i=0;i<rows.Length;i++)
  21.             {
  22.                 var data = rows[i][0];
  23.  
  24.                 //Console.WriteLine(data);
  25.                 foreach (var count in data)
  26.                 {
  27.                    
  28.                 }
  29.             }
  30.            
  31.            
  32.  
  33.  
  34.            
  35.             Console.ReadLine();
  36.         }
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement