C# Lab programs.
- Program to Check whether a number is Palindrome or not.
- Program to demonstrate Command line arguments Processing.
- Program to find the roots of Quadratic Equation.
- Program to demonstrate boxing and unboxing.
- Program to implement Stack operations.
- Write a program to demonstrate Operator overloading.
- Program to find the second largest element in a single dimensional array.
- Program to multiply to matrices using Rectangular arrays.
- Find the sum of all the elements present in a jagged array of 3 inner arrays.
- Write a program to reverse a given string.
- Using Try, Catch and Finally blocks Program to demonstrate error handling.
- Design a simple calculator using Switch Statement.
- Demonstrate Use of Virtual and override key words with a simple program.
- Implement linked lists using the existing collections name space.
- Write a program to demonstrate abstract class and abstract methods.
- Program to build a class which implements an interface which already exists.
- Write a program to illustrate the use of different properties.
- Demonstrate arrays of interface types with a C# program.
- Install .NET Core SDK: Installation link
cd
into correct project folder
# Example:
cd Palindrome
- Pass appropriate arguments
dotnet run <arguments>
Since this is a repository for lab programs, PRs will be accepted only from contributers who are a part of the UVCE community. To submit a PR, a few guidelines are to be followed.
- Create a new branch with program number e.g.
program1
- Use
git pull origin master
, on your branch, to get the latest code changes and fix all conflicts before submitting a PR. - Create the pull request. The PR should not have any merge conflicts.
- PR should have the program number in the title, eg.,
Program 3: Quadratic Equation