How can I load a CSV file into Enum in c#, I want to import data from csv file and put this data into number of enums based on number of lines (record) in csv file.
This is my Csv file:

I want to import this data in 4 enum such as i create this enums by my hand:
enum Name { Sam, John, Nodir };
enum Job { M.S, M.R, M.d};
enum Name { 5000, 7000, 9000};
enum Name { Some, Data, Info};
How i can make that? Can anyone give me please a link or piece of code