About 69,000,000 results
Open links in new tab
  1. What are the uses of "using" in C#? - Stack Overflow

    Sep 16, 2008 · User kokos answered the wonderful Hidden Features of C# question by mentioning the using keyword. Can you elaborate on that? What are the uses of using?

  2. What is the logic behind the "using" keyword in C++?

    Dec 26, 2013 · What is the logic behind the "using" keyword in C++? It is used in different situations and I am trying to find if all those have something in common and there is a reason …

  3. What is the C# Using block and why should I use it? [duplicate]

    The using statement allows the programmer to specify when objects that use resources should release them. The object provided to the using statement must implement the IDisposable …

  4. Does "using" statement always dispose the object?

    The using statement allows the programmer to specify when objects that use resources should release them. The object provided to the using statement must implement the IDisposable …

  5. How do you catch exceptions with "using" in C# - Stack Overflow

    using isn't designed to catch exceptions; it's designed to give you an easy way to wrap a try / finally around an object that needs to be disposed. If you need to catch and handle exceptions …

  6. .net - use of "using" keyword in c# - Stack Overflow

    Nov 20, 2009 · Using the using keyword can be useful. Using using helps prevent problems using exceptions. Using using can help you use disposable objects more usefully. Using a different …

  7. How to create temp table using Create statement in SQL Server?

    Mar 26, 2017 · How to create temp table using Create statement in SQL Server? Asked 8 years, 2 months ago Modified 7 months ago Viewed 337k times

  8. What is the difference between using and await using? And how …

    Oct 29, 2019 · It looks like you can only use await using with a IAsyncDisposable and you can only use using with a IDisposable since neither one inherits from the other. The only time you …

  9. EF (entity framework) usage of "using" statement - Stack Overflow

    Jul 30, 2013 · Use using if you want all the resources that the context controls to be disposed at the end of the block. When you use using, the compiler automatically creates a try/finally block …

  10. What does using mean in c++? - Stack Overflow

    Mar 28, 2010 · The using directive would solve it. Notice that if you alias a function declaration that has the same parameter types and constness as an explicit declaration (like f() in this …

Refresh