[C#] Read list from ini file
-
I know how to read a single value like Weapon=Pistol or Enabled=true, but how can i read a list of values? Something like key=value,value,value
-
Read the INI value as a string then Split the string by "," (or whatever your delimeter is) to get each item from your list.
-
@Jitnaught Yeah, that's exactly what i did, lol. Forgot to say something here. Thanks anyways