Skip to content

Instantly share code, notes, and snippets.

@Forkk
Created January 17, 2012 03:36
Show Gist options
  • Save Forkk/1624468 to your computer and use it in GitHub Desktop.
Save Forkk/1624468 to your computer and use it in GitHub Desktop.
And this is why I love C#
public void Save()
{
string[] line = new string[dict.Count];
for (int i = 0; i < dict.Count; i++)
{
line[i] = dict.Keys[i] + "=" + dict.Values[i];
}
File.WriteAllLines("", line);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment