C# 11 – file access modifier & file-scoped types
The file modifier restricts a type’s scope and visibility to the file in which it is declared. This is especially useful in situations where you want to avoid name collisions among types – like in the case of generated types using source generators. A quick example: In terms of restrictions we have the following: On…