Skip to content

Instantly share code, notes, and snippets.

@rolfbjarne
Created February 8, 2016 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rolfbjarne/8c2df3a3c2a66af2d7ab to your computer and use it in GitHub Desktop.
Save rolfbjarne/8c2df3a3c2a66af2d7ab to your computer and use it in GitHub Desktop.
using System;
using System.IO;
class Program
{
static void Main(string[] args)
{
using (var str = new StreamWriter ("foo"))
File.WriteAllText ("bar", "zap");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment