About 62 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. .net - use of "using" keyword in c# - Stack Overflow

    Nov 20, 2009 · Using the using keyword can be useful. Using using helps prevent problems using exceptions. Using using can help you use disposable objects more usefully. Using a different …

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

  4. PowerShell Syntax $using - Stack Overflow

    Oct 31, 2020 · The Using scope modifier is supported in the following contexts: Remotely executed commands, started with Invoke-Command using the ComputerName, HostName, …

  5. MySQL JOIN ON vs USING? - Stack Overflow

    Feb 19, 2021 · In a MySQL JOIN, what is the difference between ON and USING()? As far as I can tell, USING() is just more convenient syntax, whereas ON allows a little more flexibility …

  6. Logical operators ("and", "or") in Windows batch - Stack Overflow

    Feb 1, 2025 · How would you implement logical operators in Windows batch files?

  7. "Using" or "by using"? - English Language & Usage Stack Exchange

    Not using by means that the technology used is incidental, and the focus is on the approach being shown to be feasible. Without more context it's impossible to say what the intended import of …

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

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

  9. Using statement vs. IDisposable.Dispose () - Stack Overflow

    Jun 11, 2012 · 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 …

  10. A module that was compiled using NumPy 1.x cannot be run in …

    Jun 18, 2024 · A module that was compiled using NumPy 1.x cannot be run in NumPy 2.0.0 as it may crash. To support both 1.x and 2.x versions of NumPy, modules must be compiled with …