---
title: "Explain static keyword in C#?"  
description: "Explain static keyword in C#?"  
author: "Anonymous User"  
published: 2018-05-24  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/23411/explain-static-keyword-in-c-sharp  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# Explain static keyword in C#?

“Static” keyword can be used for declaring a static member. When the class is made static then all the members of the class are also made static. If the variable is made static then it will have a single instance and the value change is updated in this instance.

## Answers

### Answer by Anonymous User

“Static” keyword can be used for declaring a static member. When the class is made static then all the members of the class are also made static. If the variable is made static then it will have a single instance and the value change is updated in this instance.


---

Original Source: https://www.mindstick.com/interview/23411/explain-static-keyword-in-c-sharp

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
