Python logo

C# Code Examples for Practice

Practice how to print "Hello World" in C#
Practice how to add single line comment in C#
Practice how to add multiple lines comment in C#
Practice how to declare variable in C#
Practice how to create different data types in C#
Practice how to convert integer or decimal type to string type in C#
Practice how to convert string data to integer or decimal types using TryParse() method in C#
Practice how to capitalize the first letter of a string in C#
Practice how to get the length of a string in C#
Practice how to convert all characters of a string to uppercase in C#
Practice how to convert all characters of a string to lowercase in C#
Practice how to replace a substring of a string with specified string in C#
Practice how to remove leading and trailing whitespaces of a string in C#
Practice how to convert the first character of each word of a string to uppercase in C#
Practice how to use range in C#
Practice how to create an array in C#
Practice how to convert a string array into a string in C#
Practice how to create a list in C#
Practice how to use if conditional statement in C#
Practice how to use if...else conditional statement in C#
Practice how to use if...else if...else conditional statement in C#
Practice how to use while loop in C#
Practice how to use do while loop in C#
Practice how to use for loop in C#
Practice how to use foreach loop in C#
Practice how to use switch in C#
Practice how to create and call a method in C#
Practice how to create and call a method with return type in C#
Practice how to create and call a method with parameter in C#
Practice how to create a class and its object in C#
Practice how to create a class constructor with parameters in C#
Practice how to inherit a class in C#
Practice how to create a method in a class in C#