TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Static Class
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand (2)
Vithal Wadje (2)
Mukesh Kumar (2)
George (1)
Anil Kumar Murmu (1)
Abhishek Arora (1)
Jitendra Mesavaniya (1)
Akkiraju Ivaturi (1)
Jaimin Shethiya (1)
Mageshwaran R (1)
Tahir Ansari (1)
Ehsan Sajjad (1)
Matthew Cochran (1)
Ayan Ansuman (1)
Sachin Kalia (1)
Amit Saxena (1)
Sandeep Sharma (1)
Jatin Malik (1)
Tapan Dubey (1)
Kalyan Bandarupalli (1)
Kumar Saurabh (1)
Scott Lysle (1)
Chandramouli Muralidaran (1)
Ken Wong (1)
Prabuvel A (1)
Related resources for Static Class
No resource found
Design Pattern (3-1), Differences between Singleton & Static Class
7/29/2024 2:24:17 AM.
This article will discuss the Differences between Singleton and Static Class. This series explores Design Patterns, starting with MVC. The article discusses differences between Singleton and Static cl
Static Keyword In C#
6/18/2024 10:47:06 AM.
In this article, I'll discuss the C# static keyword, its purpose, and how to create static classes using C#. I'll also cover static variables, static methods, and static properties in C#.
Using Static Class Statements: A New Feature of C# 6.0
5/29/2024 10:31:05 AM.
C# 6.0 introduces Static Class Statements, simplifying code organization and enhancing readability by allowing static members to be imported directly, improving code maintenance and reducing verbosity
Singleton vs. Static Class in C# - Choosing the Right Approach
4/17/2024 4:54:57 AM.
Singleton and Static classes can only have one instance available in memory, and both classes can be used to maintain the global state of an application, however, there are many differences between th
Singleton Vs Static Classes in C#
4/17/2024 4:49:59 AM.
Why do you use a Singleton class if a Static class serves the purpose What is the difference between Singleton and Static classes and when do you use each one in your program?
Learn about Static Class in C#
4/16/2024 4:43:10 AM.
This article explores the concept of static classes in C#, detailing their characteristics, usage, and limitations. It covers static class setup, static class features, static method usage, and depend
Static Class And Static Class Members In C#
10/9/2023 10:26:16 AM.
Today, I will explain the concept of Static class and Static class Members in C# with some examples and how we can use it in a Static class .
A Deep Dive into Static Classes in C#
9/25/2023 4:26:42 AM.
This article, "Exploring Static Classes in C#," provides an in-depth exploration of the concept and practical applications of static classes in the C# programming language. It elucidates the
Static And Sealed Class In C#
9/25/2023 4:03:25 AM.
In this article you will learn about static and sealed lass in C#.
C# Heap(ing) Vs Stack(ing) In .NET - Part Four
6/6/2023 8:40:24 AM.
Having a basic understanding of how memory management works will help explain the behavior of the variables we work with in every program we write. In this article we’ll look further into Garbage Col
When To Use Static Classes In C#
2/16/2023 3:17:07 PM.
The static modifier in C# declares a static member of a class. The static modifier can be used with classes, properties, methods, fields, operators, events, and constructors, but it cannot be used wit
What Are The Differences Between Singleton Vs Static Classes In C#?
2/13/2023 10:36:10 AM.
In this article, you will learn what are the differences between singleton vs static classes in c#?
Types of Classes in C#
1/19/2023 10:46:00 AM.
In this article we will learn about various types of classes in C#.
Few Ways to Prevent Instantiation of Class
11/17/2022 9:05:34 AM.
Let’s go with very interesting facts about oops. There are few ways Stop Instantiation of class.
Constructor vs Static Constructor
5/9/2022 10:15:18 AM.
This article explains you the basic difference between the constructor and static constructor via example.
Introduction To Nested Class In Java
9/18/2019 3:55:35 AM.
In this article we discuss nested classes (inner classes) in Java.
Static Keyword: Static Class & Members
8/18/2017 2:35:06 AM.
In this video learn about static keyword in C#. This video has code walkthrough for C# static examples. BY the end of this video, you will be able to understand about the static keyword in c#.
Static Class In C#
1/11/2016 12:36:24 PM.
In this article you will learn about Static Class in C#.
Singleton Design Pattern Vs Static Class
11/2/2015 12:32:06 AM.
In this article, I will demonstrate you what is singleton design pattern and static class.
All About Static Class In C#
10/8/2015 3:01:40 PM.
In this article you will learn about Static Class in C#.
C# 6 Features Overview
2/11/2015 12:24:41 PM.
This article outlines the new features that have been added to the new C# version 6.0.
Static Classes in C#
6/9/2014 4:33:46 AM.
In this article we will learn about static classes in C#.
C# Static Constructor
11/25/2012 12:48:19 PM.
In this article I will be explaining Static Constructors with the help of small demo.
Fade Out a Form in C#
5/15/2012 6:39:35 PM.
This article describes a simple approach to fading out a form.
Singleton Pattern Unleashed in C#
5/15/2012 2:34:47 PM.
What is new in C# 2.0?
8/13/2007 10:06:35 AM.
In this article, I discuss new features added to C# 2.0.
Customized Windows Forms Look and Feel
1/13/2006 6:24:12 AM.
I have encountered instances when I needed a high level look and feel of Windows Forms and controls.
New Features of C#2.0 - Static Classes
12/19/2005 1:05:28 AM.
Static classes are used when a class provides functionality that is not specific to any unique instance.