Language Basics C# Book

For the fields with the same type we can declare them together.
class Rectangle{
int Width, Height;
}
They can share the same modifiers as well.
class Rectangle{
public int Width, Height;
}