About 702,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 logic behind the "using" keyword in C++?

    Dec 27, 2013 · 182 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 …

  3. What scope does a using statement have without curly braces

    Jul 18, 2014 · So if you are using using var resp = req.GetResponse() inside of the root block of a method, then the using variable will have method scope, actually similar to the defer statement …

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

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

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

    A using statement can be exited either when the end of the using statement is reached or if an exception is thrown and control leaves the statement block before the end of the statement.

  7. Why use a using statement with a SqlTransaction?

    52 I've been running into some problems concerning a SqlTransaction I'm using in my code. During my Googling I see many people using a using statement with a SqlTransaction. What is …

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

  9. Authenticate with GitHub using a token - Stack Overflow

    I am trying to authenticate with GitHub using a personal access token. In the help files at GitHub, it states to use the cURL method to authenticate (Creating a personal access token). I have …

  10. How do I UPDATE from a SELECT in SQL Server? - Stack Overflow

    Feb 25, 2010 · Although the question is very interesting, I have seen in many forum sites and made a solution using INNER JOIN with screenshots. At first, I have created a table named …