About 759,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;"? - Stack Overflow

    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. Newest Questions - Stack Overflow

    I am using the wifi_iot package for Flutter to connect to a device's Wi-Fi network in order to display a stream and send commands via SSH. However, on certain Android phones, all …

  5. What is the difference between using and await using? And how …

    Oct 29, 2019 · It looks like you can only use await using with a IAsyncDisposable and you can only use using with a IDisposable since neither one inherits from the other. The only time you …

  6. T-SQL: Using a CASE in an UPDATE statement to update certain …

    T-SQL: Using a CASE in an UPDATE statement to update certain columns depending on a condition Asked 14 years, 6 months ago Modified 3 years, 1 month ago Viewed 405k times

  7. Using PowerShell to write a file in UTF-8 without the BOM

    Apr 7, 2016 · Note: This answer applies to Windows PowerShell (the legacy, ships-with-Windows, Windows-only edition of PowerShell whose latest and last version is 5.1); by contrast, in the …

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

    Aug 6, 2015 · The static Keyword on a using statement will import only the one, specified type (and its nested types). Furthermore you must not give the type name anymore. So just add …

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

  10. How do I check if PyTorch is using the GPU? - Stack Overflow

    Jan 8, 2018 · How do I check if PyTorch is using the GPU? The nvidia-smi command can detect GPU activity, but I want to check it directly from inside a Python script.