Hi all,

I'd like to use one Using statement with multiple resources. MSDN says that one Using block can be used for multiple resources, however, I don't see any examples and I can't seem to figure out the syntax.

I have already acquired the recources and would like to do something like:

vb Code:
  1. Using conn, da
  2. ' Do something.
  3. End Using

Thanks for any help.