+ 2
Как решить задание "Социальная сеть"?
Пробовал разные варианты не получается, в интернете ничего найти не мог, пишет данного вопроса нет, может есть кто справился?
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;}
}