Home Python C Language C ++ HTML 5 CSS Javascript Java Kotlin SQL DJango Bootstrap React.js R C# PHP ASP.Net Numpy Dart Pandas Digital Marketing

C# Variables


Absolutely! Variables in C# are like containers that hold data. They have a name and a data type, and you can store different types of information in them, like numbers, text, or even complex objects. Let's go over the basics with examples:

Declaring Variables:

To create a variable in C#, you use the following syntax:

Example

<data_type> <variable_name>;

Here, <data_type> specifies the type of data the variable will hold, and <variable_name> is the name you give to the variable. For example:

Example

int age; // This declares a variable named 'age' that can hold integer values.

Initializing Variables:

You can also assign a value to a variable at the time of declaration:

<data_type> <variable_name> = <value>;

For Example

int age = 25; // This declares a variable named 'age' and assigns it the value 25.

Variable Types:

C# supports various data types for variables. Here are some common ones:

Example:

Let's put it all together with an example:

using System;

class Program
{
static void Main()
{
// Declaring and initializing variables
int age = 25;
float height = 5.8f;
string name = "John Doe";
bool isStudent = true;

// Printing out the values of the variables
Console.WriteLine("Name: " + name);
Console.WriteLine("Age: " + age);
Console.WriteLine("Height: " + height + " feet");
Console.WriteLine("Is student? " + isStudent);
}
}

When you run this program, it will output:

Name: John Doe
Age: 25
Height: 5.8 feet
Is student? True

That's the basics of variables in C#! They're essential for storing and manipulating data in your programs.



Advertisement





Q3 Schools : India


Online Complier

HTML 5

Python

java

C++

C

JavaScript

Website Development

HTML

CSS

JavaScript

Python

SQL

Campus Learning

C

C#

java