What about the using construct in c#
Posted
by Joshua
on Stack Overflow
See other posts from Stack Overflow
or by Joshua
Published on 2010-03-30T19:56:06Z
Indexed on
2010/03/30
20:13 UTC
Read the original article
Hit count: 462
I see this:
using (StreamWriter sw = new StreamWriter("file.txt"))
{
// d0 w0rk s0n
}
Everything I try to find info on is does not explain what this doing, and instead gives me stuff about namespaces.
© Stack Overflow or respective owner