Popular posts from this blog
Passing value without reference in C#
Passing value without reference in C# using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MYPROJECT.startup { class startupday1 { static void Main() { int y = 0; func( y); Console.Write("new value is {0}\n", y); Console.Write("new value is {0}\n", func(y)); Console.ReadKey(); } static int func( int x) ...
Input and output in C#
Input and output in C# using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MYPROJECT.startup { class startupday1 { static void Main() { Console.Write("enter name\n"); string name=Console.ReadLine(); Console.Write("the name is " + name); Console.ReadLine(); } } } OUTPUT