BOXING and UNBOXING example in C#

This is the example for Boxing and unboxing.
Note that both value type and reference type yield the same result.
This is illustrated below.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;

namespace forgetCode
{
    class Program
    {
        static void Main(string[] args)
        {

            string mine = "Forget code";
            String referenceType1 = mine; //Boxing
            string valueType1 = referenceType1; //Unboxing

            bool b = true;
            Boolean referenceType2 = b; //Boxing
            bool valueType2 = referenceType2; //Unboxing


            Console.WriteLine(mine);
            Console.WriteLine(referenceType1);
            Console.WriteLine(valueType1);

            Console.WriteLine(b);
            Console.WriteLine(referenceType2);
            Console.WriteLine(valueType2);
        }

      
    }
}


Output:
Forget code
Forget code
Forget code
True
True
True