InternetSwag
Expert Member
I'm trying to follow this video https://www.youtube.com/watch?v=Yj0G5UdBJZw&list=UU1MwJy1R0nGQkXxRD9p-zTQ to learn some stuff.
But I can't get the console command prompt to show up with the text.
This is where I am so far, please help me fix this.
But I can't get the console command prompt to show up with the text.
This is where I am so far, please help me fix this.
PHP:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// HelloWorld
namespace JerrysCoolApp
{
//Class (contains functionality)
class Program
{
// Function (entry point)
static void Main(string[] args)
{
String jerryString = "Hello this is Jerrys String";
// Starting Point of everything
Console.WriteLine("jerryString";)
}
}
}