C# 3 Different Variables and Input
Hello, I am new to C# and was hoping to get some feedback on my code. I'm trying to make this an interactive program by the three response variables. Your help is greatly appreciated. using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) { Console.WriteLine("What is your name?"); var v1 = Console.ReadLine(); Console.WriteLine("Hello " + v1); Console.WriteLine("Do you like programming?"); var v1 = Console.ReadLine(); if v1 = ("yes"); Console.WriteLine("That's awesome!"); if v1 == ("no"); Console.WriteLine("Why?"); Console.ReadLine(); if v1 == ("maybe"); Console.WriteLine("You must be kidding me!");