WHY GET ERROR
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; //here post.ShowPost(); } } class Post { private string text; public Post() { Console.WriteLine("New Post"); } //escribe un constructor aquí public void ShowPost() { Console.WriteLine(text); } public string text {get; set;} //and here //escribe una propiedad para el texto del miembro }