Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
D16
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Overload { private string name = "Akhil"; public void Display() { Display2(ref name, ref name); System.Console.WriteLine(name); } private void Display2(ref string x, ref string y) { System.Console.WriteLine(name); x = "Akhil 1"; System.Console.WriteLine(name); y = "Akhil 2"; System.Console.WriteLine(name); name = "Akhil 3"; } } class Program { public static void Main(string[] args) { Overload overload = new Overload(); overload.Display(); //Console.ReadKey(); } } }
run
|
edit
|
history
|
help
0
BNV
Intuit // C# // Lecture_4 // Laba_#1
Interface
Random number generator with IF
Programmer DNA
Linq join to tables
matching parenthesis
compiled prog
opQ 3
aaa