C# "Social Networking" question
I could use some help figuring this out. I get the basics of what I'm supposed to do -- make a constructor and a property "fit" together so the program creates the desired output, but I have no idea what to "Plug in." Properties and constructors are similar, and the given names for elements aren't nearly descriptive enough for me to read easily. Below is the code. I'm able to understand the basic concepts of the code, but struggle to know how to implement that knowledge, does anyone have any advice on that? using System; using System.Collections.Generic; namespace Code_Coach_Challenge { class Program { static void Main(string[] args) { string postText = Console.ReadLine(); Post post = new Post(); post.Text = postText; post.ShowPost(); } } class Post { private string text; //write a constructor here public void ShowPost() { Console.WriteLine(text); } //write a property for member text