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

    Mar 8, 2017 · 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 C# Using block and why should I use it? [duplicate]

    The using statement is used to work with an object in C# that implements the IDisposable interface. The IDisposable interface has one public method called Dispose that is used to dispose of the object.

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

    Dec 27, 2013 · 183 In C++11, the using keyword when used for type alias is identical to typedef. 7.1.3.2 A typedef-name can also be introduced by an alias-declaration. The identifier following the using …

  4. What is the difference between using and await using? And how can I ...

    Oct 29, 2019 · using var disposable = new Disposable(); // Do something What is the difference between using and await using? How should I decide which one to use?

  5. What is the difference between 'typedef' and 'using'?

    Updating the using keyword was specifically for templates, and (as was pointed out in the accepted answer) when you are working with non-templates using and typedef are mechanically identical, so …

  6. What's the scope of the "using" declaration in C++?

    Oct 22, 2008 · But if you put the using declaration inside a namespace it's limited to the scope of that namespace, so is generally OK (with the usual caveats on your particular needs and style).

  7. What's the problem with "using namespace std;"?

    The problem with putting using namespace in the header files of your classes is that it forces anyone who wants to use your classes (by including your header files) to also be 'using' (i.e. seeing …

  8. MySQL JOIN ON vs USING? - Stack Overflow

    Feb 19, 2021 · In a MySQL JOIN, what is the difference between ON and USING()? As far as I can tell, USING() is just more convenient syntax, whereas ON allows a little more flexibility when the column …

  9. How do I use the C#6 "Using static" feature? - Stack Overflow

    Aug 6, 2015 · I'm having a look at a couple of the new features in C# 6, specifically, "using static". using static is a new kind of using clause that lets you import static members of types directly into sco...

  10. How does the "Using" statement translate from C# to VB?

    May 20, 2009 · 2 Seems like using (C#) and Using (VB) have an extremely important difference. And at least for me now, it can defeat the purpose of Using.