I need to create a program and this are the instructions please anybody help me
1. Create a program that has a class called demoClass with one method: main.
2. You should create a second class called finalLab.
3. finalLab will have one method, one constructor and one property.
a. The property will be a string called message.
b. The constructor will set message to be equal to the string "Hello World"
c. The method will be called displayMessage and will simply print the string property message to the console.
4. Your main method in DemoClass should instantiate the new object of type finalLab called Final. Call the method displayMessage after instantiating the object. Set message to "I am done with CIS214" and then call displayMessage again.
Output should look like the below
---------
Hello World
I am done with CIS214
this is what i have so far :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class demoClass
{
public static void Main()
{
Console.Write("Hello World");
finalLab();
}
public static void finalLab()
{
}
}
}