Advertisement
Dprogrammed1

c#

Mar 27th, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1.   class Program
  2.  
  3.     {
  4.  
  5.         static void Main(string[] args)
  6.  
  7.         {
  8.  
  9.             String s1 = "Hello i love Csharp";
  10.  
  11.             StringBuilder s2 = new  StringBuilder(s1);
  12.  
  13.             Console.WriteLine(s1.Equals(s2));
  14.  
  15.             Console.ReadLine();
  16.  
  17.         }
  18.  
  19.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement