About 761,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 difference between using and await using? And how …

    Oct 29, 2019 · 43 Justin Lessard's answer explains the difference between using and await using, so I'll focus on which one to use. There are two cases: either the two methods Dispose / …

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

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

  4. c# - 'using' statement vs 'try finally' - Stack Overflow

    Jul 29, 2015 · The using statement ensures that Dispose is called even if an exception occurs while you are calling methods on the object. You can achieve the same result by putting the …

  5. Azure function app authenticating using managed identity with …

    Jun 18, 2024 · Azure function app authenticating using managed identity with scope Asked 1 year, 1 month ago Modified 9 days ago Viewed 5k times

  6. Windows Kill Process By PORT Number - Stack Overflow

    Mar 23, 2019 · Option 2 PowerShell Get-Process -Id (Get-NetTCPConnection -LocalPort portNumber).OwningProcess cmd C:\> netstat -a -b (Add -n to stop it trying to resolve …

  7. Defining and using a variable in batch file - Stack Overflow

    Defining and using a variable in batch file Asked 13 years, 3 months ago Modified 4 months ago Viewed 1.3m times

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

  9. Accessing Microsoft Sharepoint files and data using Python

    Jan 30, 2020 · 16 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 …

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