Как возможно, что класс в С# может не содержать конструкторов? Например, у меня есть класс
internal class TextStyle
{
internal string text = "";
internal Font font = new Font("Arial", 8);
internal Color color = Color.Black;
}
И в коде этот класс создается как
TextStyle textParameters = new TextStyle();