using System;
public class Program
{
public static void Main()
object objA = "Codebuns";
object objB = objA;
object objC = new String(new char[] { 'C', 'o', 'd', 'e', 'b', 'u', 'n', 's' });
Console.WriteLine(objA == objC); // Different reference: False
Console.WriteLine(objA == objB); // Same reference: True
Console.WriteLine(objA.Equals(objC)); // Same Value: True
}