Searching for: Class Declaration in C#
Standard Methods
Language: C#

A method is a block of code that can be called from another location in the program or class. It is used to reduce the repetition of multiple lines of code. The return statement concludes the execution of the block of code, returning something of type provided in the method header, or null (void method). Within a class, these are known as 'instance methods'. An instance method is tied to a class instance.

Primitive Data Types
Language: C#

To declare the type of data for the value of a variable. Primitive data types include: int, short, long, byte, float, double, char, and boolean.

Write to File
Language: C#

Used to write to a file.


< Previous Page   |