About 69 results
Open links in new tab
  1. static modifier - C# reference | Microsoft Learn

    Jan 26, 2026 · static modifier - C# Reference While an instance of a class contains a separate copy of all instance fields of the class, there's only one copy of each static field. For generic types, each …

  2. Static Classes and Static Class Members - C# | Microsoft Learn

    Oct 17, 2025 · Static classes can't be instantiated in C#. You access the members of a static class by using the class name itself.

  3. Static statement (VBA) | Microsoft Learn

    Mar 29, 2022 · Note The Static statement and the Static keyword are similar, but used for different effects. If you declare a procedure by using the Static keyword (as in Static Sub CountSales ()), the …

  4. Explore static virtual members in C# interfaces - C#

    Mar 13, 2026 · Interface static virtual members enable you to define interfaces that include overloaded operators or other static members. Once you define interfaces with static members, you can use …

  5. Static Class Design - Framework Design Guidelines | Microsoft Learn

    Oct 3, 2023 · A static class is defined as a class that contains only static members (of course besides the instance members inherited from System.Object and possibly a private constructor).

  6. Static - Visual Basic | Microsoft Learn

    Sep 15, 2021 · A static variable continues to exist and retains its most recent value. The next time your code calls the procedure, the variable is not reinitialized, and it still holds the latest value that you …

  7. Storage classes (C++) | Microsoft Learn

    Feb 15, 2022 · In C++, the static, extern and thread_local keywords specify the lifetime, linkage, and memory location of a variable or function.

  8. Insert the current date and time in a cell | Microsoft Support

    Insert a date or time whose value is updated A date or time that updates when the worksheet is recalculated, or the workbook is opened is considered “dynamic” instead of static. In a worksheet, …

  9. Static Constructors - C# | Microsoft Learn

    Aug 2, 2024 · A static constructor in C# initializes static data or performs an action done only once. It runs before the first instance is created or static members are referenced.

  10. Static files in ASP.NET Core | Microsoft Learn

    May 31, 2026 · Static files, also called static assets, are files an ASP.NET Core app that aren't dynamically generated. Instead, they're served directly to clients on request, such as HTML, CSS, …

  11. static Storage-Class Specifier | Microsoft Learn

    Aug 3, 2021 · Learn more about: static Storage-Class Specifier A variable declared at the internal level with the static storage-class specifier has a global lifetime but is visible only within the block in which …