What are the kind of variables that must be disposed? (.NET/Java)
Three questions: What kind of variables should be disposed manually in .NET/Java? I know that SqlConnection should always be either disposed manually or used in a using{} block. Is it right? What are …