Tagged Questions

3
votes
4answers
383 views

using various types in a using statement (C#)

Since the C# using statement is just a syntactic sugar for try/finally{dispose} why does it accept multiple objects ONLY IF THEY ARE OF THE SAME TYPE? I don't get it since all th …