About 769,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 26, 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 …

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

    Dec 16, 2014 · 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 …

  4. What is the C# Using block and why should I use it? [duplicate]

    Feb 26, 2020 · 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 …

  5. How can I uninstall an application using PowerShell?

    Sep 22, 2008 · Is there a simple way to hook into the standard 'Add or Remove Programs' functionality using PowerShell to uninstall an existing application? Or to check if the …

  6. Newest Questions - Stack Overflow

    I'm using SwiftData and storing user data in a @ModelContext. The data is saved locally on the device and it works perfectly on both my iPhone and Mac - not just in the Xcode simulator, but …

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

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

    Sep 20, 2013 · When you make a call to using namespace <some_namespace>; all symbols in that namespace will become visible without adding the namespace prefix. A symbol may be …

  9. How do I make calls to a REST API using C#? - Stack Overflow

    Mar 8, 2012 · The answer marked here suggests using HttpClient directly and the disposing of it. This might work, but it's quite easy to run in to problems with HttpClient if you don't use it …

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