حوالي 653٬000 من النتائج تقريباً
افتح الروابط في علامة تبويب جديدة
  1. What are the uses of "using" in C#? - Stack Overflow

    9 جمادى الآخرة 1438 بعد الهجرة · 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 difference between "using" and "by using"?

    By using a joystick or a pointing device, an on-screen keyboard allows people with mobility impairments to type data. The second sentence states that the on-screen keyboard is the one …

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

    2 رجب 1441 بعد الهجرة · 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. What is the logic behind the "using" keyword in C++?

    24 صفر 1435 بعد الهجرة · 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 …

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

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

    1 ربيع الأول 1441 بعد الهجرة · 46 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 …

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

    22 شوال 1429 بعد الهجرة · 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 …

  8. Should 'using' directives be inside or outside the namespace in C#?

    I have been running StyleCop over some C# code, and it keeps reporting that my using directives should be inside the namespace. Is there a technical reason for putting the using directives inside

  9. MySQL JOIN ON vs USING? - Stack Overflow

    7 رجب 1442 بعد الهجرة · 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 …

  10. c# - in a "using" block is a SqlConnection closed on return or ...

    Yes Yes. Either way, when the using block is exited (either by successful completion or by error) it is closed. Although I think it would be better to organize like this because it's a lot easier to see …