About 707,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. grammar - 'I was using', 'I have used', 'I have been using', 'I had ...

    Oct 21, 2010 · I had been using cocaine. Meaning, with a reference point in the past, starting a time before then up to the reference point, I was habitually using cocaine up to and including …

  3. 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. …

  4. MySQL JOIN ON vs USING? - Stack Overflow

    Feb 19, 2021 · Extremely good point. Of all the advantages using provides, it can't be combined with other predicates: select*from t join t2 using(i) and on 1 wouldnt work.

  5. What is the use of "using namespace std"? [duplicate]

    Sep 20, 2013 · What is the use of using namespace std? I'd like to see explanation in Layman terms.

  6. 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 …

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

    May 20, 2009 · Using has virtually the same syntax in VB as C#, assuming you're using .NET 2.0 or later (which implies the VB.NET v8 compiler or later). Basically, just remove the braces and …

  8. Iterating over a dictionary using a 'for' loop, getting keys

    Mar 16, 2017 · Iterating over a dictionary using a 'for' loop, getting keys Asked 15 years, 3 months ago Modified 2 days ago Viewed 6.1m times

  9. c# - in a "using" block is a SqlConnection closed on return or ...

    The intention of "using" is to give developers a guaranteed way to make sure that resources get disposed. From MSDN: A using statement can be exited either when the end of the using …

  10. How does `USING` keyword work in PostgreSQL? - Stack Overflow

    Jan 29, 2024 · A USING clause can be used with an EXECUTE statement in PL/pgSQL language (LANGUAGE plpgsql) for a function, procedure and DO statement. For example, you can use …