Как решить задание "Социальная сеть"? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Как решить задание "Социальная сеть"?

Пробовал разные варианты не получается, в интернете ничего найти не мог, пишет данного вопроса нет, может есть кто справился?

24th Oct 2022, 4:39 AM
Denis Batin
Denis Batin - avatar
1 Answer
+ 2
First of all it is asking you to add a constructor in the Post class that will output "New Post" to the console. public Post() { Console.WriteLine("New post"); } The other thing it is asking you to do is add a "Text property" to the Post class so that the Main method can read the Post's private text string. public string Text { get {return text;} set {text = value;} }
25th Oct 2022, 11:03 PM
Peter Nicholas
Peter Nicholas - avatar