C Sharp (C#) - Properties and Encapsulation
Examine this code snippet:
What is the issue here?
public class Article {
public string Title { get; init; }
}
var article = new Article();
article.Title = "C# Basics";What is the issue here?
