"File-Scoped type example"

file class MyClass { // Only accessible within the same .cs file
	private protected string SomeProperty { get; set; }
}


Code snippet taken from "Complete C# Quick Reference - C# 11".