Skip to content

Instantly share code, notes, and snippets.

@DongguemYoo
Created April 24, 2020 01:40
Show Gist options
  • Save DongguemYoo/04dd32ecb35c4c4923c7b87d8300c620 to your computer and use it in GitHub Desktop.
Save DongguemYoo/04dd32ecb35c4c4923c7b87d8300c620 to your computer and use it in GitHub Desktop.
fileToDict
public FileToDict()
{
var lines = File.ReadAllLines("fileName.txt");
var dict = lines.Select(line=>line.Split('='))
.ToDictionary(x=>x[0],x=>x[1]);
(왼쪽)=키,(오른쪽)=발류
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment