Created
August 18, 2019 16:48
-
-
Save luisdeol/363818dd62f10bfe44332e19e402dab0 to your computer and use it in GitHub Desktop.
2.6 - Using statement
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace _26_ManageObjLifecycle | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
using (var baseClass = new BaseClass()) | |
{ | |
Console.WriteLine("Doing stuff."); | |
} | |
Console.ReadKey(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment