I am writing down some notes on a C# course I'm currently taking, and I was wondering if there's a specifically referenced name to the fields in a class we create that should not be able to be changed. Do we simply call them, "Readonly Fields"? Take the following field (width) in the Map class as an example:
public class Map
    {
      public readonly int Width;
        public int Height;
        public Map(int width, int height)
        {
            Width = width;
            Height = height;
        }
    }
 
     
    