Variables and Data Types



This content originally appeared on DEV Community and was authored by pks_021127

using System;

namespace Study
{
  internal class Program
  {
    static void Main()
    {
      int varA = 1;
      double varB = 2.5;
      string varC = "ABC";
      bool varD = true;
      Console.WriteLine(varA + varB + varC + varD);
    }
  }
}


This content originally appeared on DEV Community and was authored by pks_021127