Ejemplo n.º 1
0
 private static void UsingStatement()
 {
     using (var r = new AResource())
     {
         r.Use();
     }
 }
Ejemplo n.º 2
0
 private static void UsingDeclaration()
 {
     using var r = new AResource();
     r.Use();
 }