For example consider a class:
public class MyClass {
public int Number { get; set; }
public string AString { get; set; }
}
This class could perfectly defines that the CSV file should have two columns with names Number and AString with their corresponding types.
For example consider a class:
This class could perfectly defines that the CSV file should have two columns with names
NumberandAStringwith their corresponding types.