---
title: "Is it possible to use this in static blocks?"  
description: "Is it possible to use this in static blocks?"  
author: "Hemant Patel"  
published: 2017-12-26  
updated: 2020-09-22  
canonical: https://www.mindstick.com/interview/23344/is-it-possible-to-use-this-in-static-blocks  
category: "c#"  
tags: ["c#", "java"]  
reading_time: 1 minute  

---

# Is it possible to use this in static blocks?

No, it's not possible to use this keyword in the static block, because there is no object instance in a call of a static method and also 'this' refers to the object instance.

## Answers

### Answer by Hemant Patel

No, it's not possible to use this keyword in the static block, because there is no object instance in a call of a static method and also 'this' refers to the object instance.


---

Original Source: https://www.mindstick.com/interview/23344/is-it-possible-to-use-this-in-static-blocks

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
