約 707,000 件の結果
リンクを新しいタブで開く
  1. What are the uses of "using" in C#? - Stack Overflow

    2017年3月8日 · 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. c# - try/catch + using, right syntax - Stack Overflow

    In other word, if you know that the initialization of a variable in using may throw a particular exception, I wrap it with try-catch. Similarly, if within using body something may happen, which …

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

    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 'using' (i.e. …

  4. grammar - 'I was using', 'I have used', 'I have been using', 'I had ...

    2010年10月21日 · I had been using cocaine. Meaning, with a reference point in the past, starting a time before then up to the reference point, I was habitually using cocaine up to and including …

  5. c++ - Using std Namespace - Stack Overflow

    There seem to be different views on using 'using' with respect to the std namespace. Some say use ' using namespace std', other say don't but rather prefix std functions that are to be used …

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

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

    2013年9月20日 · What is the use of using namespace std? I'd like to see explanation in Layman terms.

  8. Azure function app authenticating using managed identity with …

    2024年6月18日 · Azure function app authenticating using managed identity with scope Asked 1 year, 4 months ago Modified 3 months ago Viewed 6k times

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

    The intention of "using" is to give developers a guaranteed way to make sure that resources get disposed. From MSDN: A using statement can be exited either when the end of the using …

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

    2015年8月6日 · I'm having a look at a couple of the new features in C# 6, specifically, "using static". using static is a new kind of using clause that lets you import static members of types …