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

    Mar 8, 2017 · The using statement calls the Dispose method on the object in the correct way, and (when you use it as shown earlier) it also causes the object itself to go out of scope as soon as …

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

    Dec 27, 2013 · 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. Why use a using statement with a SqlTransaction?

    Jul 15, 2009 · Essentially the using does the same thing that you are doing, except int a finally block instead of catching all exceptions: using (SqlConnection cn = new SqlConnection()) { …

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

    Oct 22, 2008 · Writing using ImplementationDetail::Foo in your own header, when that header declares ImplementationDetail::Foo can be OK, moreso if the using declaration happens in …

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

    Aug 6, 2015 · using static is a new kind of using clause that lets you import static members of types directly into scope. (Bottom of the blog post) The idea is as follows, according to a …

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

  7. Left Outer Join using + sign in Oracle 11g - Stack Overflow

    TableA LEFT OUTER JOIN TableB is equivalent to TableB RIGHT OUTER JOIN Table A.. In Oracle, (+) denotes the "optional" table in the JOIN.

  8. Accessing Microsoft Sharepoint files and data using Python

    Jan 30, 2020 · I am using Microsoft sharepoint. I have an url, by using that url I need to get total data like photos,videos,folders,subfolders,files,posts etc... and I need to store those data in …

  9. Upgrading Node.js to the latest version - Stack Overflow

    Using npm (Node Package Manager): Open your terminal or command prompt. Run the following command to update npm to the latest version (optional but recommended): npm install -g …

  10. Using cURL to upload POST data with files - Stack Overflow

    I would like to use cURL to not only send data parameters in HTTP POST but to also upload files with specific form name. How should I go about doing that ? HTTP Post parameters: userid = …

Refresh