Azure Container Registry

What is Application Insights?

SqlBulkCopy Class

OPENXML (SQL Server)

OPENJSON (SQL Server)

Angular Introduction


Some Interesting Code...


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp1
{
         interface IBMW
         {
              void CreateCar();
         }

         interface IToyota
         {
              void CreateCar();
         }

         public class CarFactory : IBMW, IToyota
         {
              void IBMW.CreateCar()
              {
                 Console.WriteLine("Creating BMW");
              }

              void IToyota.CreateCar()
              {
                 Console.WriteLine("Creating Toyota");
              }
        }
        class Program
        {
               static void Main(string[] args)
               {
                    IBMW objBMW = new CarFactory();
                    IToyota objToyota = new CarFactory();

                    objBMW.CreateCar();
                    objToyota.CreateCar();
                    Console.ReadLine();
               }
        }
}