fork download
  1.  
  2. using System;
  3. using System.Text;
  4.  
  5.  
  6.  
  7. class Program {
  8. static void Main(string[] args)
  9. {
  10. string s1 = "hop";
  11. StringBuilder s2 = new StringBuilder(s1);
  12. string s3 = s2.ToString();
  13. Console.WriteLine(Object.ReferenceEquals(s1, s3));
  14. }
  15. }
  16.  
  17.  
Success #stdin #stdout 0.05s 23904KB
stdin
Standard input is empty
stdout
True