TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

<< Back to C-SHARP

C# void Method, Return No Value

Understand the void keyword. Methods that are void return no values, and we cannot assign to them.
Void. Nothing can be seen. The darkness is absolute. What lies at the bottom of a void? In C# programs we often use void methods (these return nothing).
Void is useful throughout your source code. But there are some compile-time errors that may be involved. We carefully examine these.Keywords
First example. The void keyword is common and useful. It indicates the evaluation stack of a method must be empty when it returns and no value will be copied into the calling code.

Here: We declare and use a static void method (Example1). The control flow jumps to this method when you invoke it, but there is no result.

Note: It is a compile-time error to assign to the Example method invocation. No variable can be assigned to void.

Next: We use an instance void method. To declare an instance method, omit the static modifier. Methods are by default considered instance.

Parameters: Void methods receive parameters like all methods—they use a simple "return" statement that is followed by a semicolon.

Return
C# program that declares void type methods using System; class Program { static void Example1() { Console.WriteLine("Static void method"); } void Example2() { Console.WriteLine("Instance void method"); return; // Optional } static void Main() { // // Invoke a static void method. // Example1(); // // Invoke an instance void method. // Program program = new Program(); program.Example2(); // // This statement doesn't compile. // // int x = Example1(); } } Output Static void method Instance void method
IL. We look at the intermediate language generated by the Microsoft C# compiler for the first example method. The intermediate language (IL) relies on an evaluation stack for processing.IL

Ret: The void method must have no elements on the evaluation stack when the "ret" instruction is reached.

Book: The book Expert .NET IL 2.0 Assembler by Serge Lidin provides an excellent description of this requirement.

Intermediate language for void method: IL .method private hidebysig static void Example1() cil managed { .maxstack 8 L_0000: ldstr "Static void method" L_0005: call void [mscorlib]System.Console::WriteLine(string) L_000a: ret }
Error, notes. An error occurs when you try to assign a variable to the result of a void method. This is the "cannot implicitly convert type" error. To fix this, do not assign to void.

Info: Because void primarily impacts the compile-time processing of a program, no errors will be caused by void specifically at runtime.

Instead: The void type will instead force compile-time errors. These are useful—they help us improve programs.

C# program that causes compile-time error class Program { static void VoidMethod() { } static void Main() { int result = VoidMethod(); } } Output Error 1: Cannot implicitly convert type void to int.
Overload, error. A compile-time error can be raised when you try to overload methods based on only their return types. This cannot be done.

Important: You cannot overload methods based on their return types such as void alone in the C# language.

Overload

Note: The IL supports overloading on return type. It identifies methods based on a triad: return type, identifier, and parameter list.

Action. This is a delegate type that returns void. It makes it easier to create delegate method objects. Action is a generic class. You specify its argument types as type parameters.Action
A summary. We declared, and invoked, void instance and static methods. The void keyword is common in C# source code. It means that the code returns no value.
© TheDeveloperBlog.com
The Dev Codes

Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf