How to retrieve the system’s reference to the specified String in C#?


To retrieve the system’s reference to the specified String, the code is as follows −

Example

 Live Demo

using System;
public class Demo{
   public static void Main(string[] args){
      string str1 = "David";
      string str2 = string.Intern(str1);
      Console.WriteLine("String1 = "+str1);
      Console.WriteLine("System reference of String1 = "+str2);
   }
}

Output

This will produce the following output −

String1 = David 
System reference of String1 = David

Example

Let us now see another example −

 Live Demo

using System;
public class Demo{
   public static void Main(string[] args){
      string str1 = "50";
      string str2 = "100";
      Console.WriteLine("String1 = "+str1);
      Console.WriteLine("String2 = "+str2);
      str2 = string.Intern(str1);
      Console.WriteLine("System reference of String1 = "+str2);
   }
}

Output

This will produce the following output −

String1 = 50
String2 = 100
System reference of String1 = 50

Updated on: 11-Dec-2019

31 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements