Object reference not set to an instance of an object

Ruslan's ASP .NET weblog

Browse by Tags

All Tags » .NET » CSV » ASP.NET (RSS)
CSV to TextReader
/// <summary> /// Take a file path and return a TextReader /// </summary> /// <param name="file_path"></param> /// <returns></returns> private TextReader OpenFile ( string file_path) { try { // Read the CSV file in...
More Posts