Write a simple program to subtraction of two numbers in C# using System; namespace Subtraction { class Program { static void Main(string[] args) { int a = 20, b = 10, sub; …
Write a simple Program to Add two Integer numbers in C#. using System; namespace add { class Program { static void Main(string[] args) { int a = 10, b = 20, sum; sum…
First Program of C# Print Hello World Of C# 💛 using System; //Header File (// is Comment method). namespace Hello // namespace is divided any method. { public class Hello // public is used every …