I'm doing some SQL connections with the 'using' command to dispose/close connections for me. If I pass items to a string from within the using command, will they remain once the connection is closed/disposed?
If it does, what is the best way to make sure items are kept in the string rather than being disposed so that I can use them later on.