No, basically. C # type names and member names cannot contain spaces (and cannot begin with a number). There is support for disambiguating names from reserved keywords ( @ prefix), but that's about it.
When a long name is displayed, DisplayNameAttribute is often used, i.e.
[DisplayName("My class")] public class MyClass { [DisplayName("Full name")] public string FullName {get;set;} }
- but this will not help with your wishes unit test.
Marc gravell
source share