---
title: "What is the Void in c#?"  
description: "What is the Void in c#?"  
author: "Pradeep kumar Patel"  
published: 2019-11-01  
canonical: https://answers.mindstick.com/qa/82458/what-is-the-void-in-c-sharp  
category: "programming language"  
tags: ["c#", ".net programming"]  
reading_time: 2 minutes  

---

#  What is the Void in c#?

What is the [Void in c#](https://answers.mindstick.com/qa/82434/what-is-the-difference-between-public-static-and-void-in-c-sharp)?

## Answers

### Answer by user

**fildena 100** famous brand name Fildena is a close member of PDE5 inhibitor drug. The brand Fildena represents a group of medications from the drug maker resource Healthcare in India. The remedy of fildena forms a prescription for those males who fight the predicaments of attaining a desirable erection. These drugs are highly efficacious to intrude on erectile dysfunction or ED owing to the active recipe sildenafil citrate. This drug represses specifically the PDE5 substance, a chemical essential piece in the mechanism for male penile erection. The valuable medicine can as well effectively manage other conditions like benign prostatic hyperplasia and pulmonary arterial hypertension. It protects pregnancies among those at the danger of abortion, female fertility therapies, tackles urine issues due to an enlarged prostate, and various vital clinical morbidities. It functions like that since PDE5 is existing in your different body parts. Above all, it invades the impacts of ED and PAH.

https://www.flatmeds.com/product/fildena-100/

### Answer by Shikhar Arora

The void keyword is used as a return type for a method. When we declare or define a method with the void keyword, it means that the method cannot return any value. The void keyword cannot be used in a parameterized method. A method with no parameters or return value is declared below:

```
public void SampleMethod()
{
    // Body of the method.
}
```

\


---

Original Source: https://answers.mindstick.com/qa/82458/what-is-the-void-in-c-sharp

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
