尝试设置一个在属性中有空格但非常困难的枚举,因此认为它们可能是一种使用字符串格式或其他方式破解它的简单方法,因为它们只是我需要的一个具有空格的枚举,我确切地知道它是什么. 对此字符串添加空格的任何帮助
public class Address
{
...blah...more class datatypes here...
public AddressType Type { get; set; } //AddressType is an enum
...blah....
}
if (Address.Type.ToString() == "UnitedStates")
{
**Add space between United and States**
}