I'm trying to get Spring.Net to set a tab to a property (Separators) on my service class, however whatever I try to use e.g. "\u0009" or a real tabulator spring refuses to use a tab. The real tab is set as a space, the unicode is escaped, "\t" is escaped as well.
<object name="s:SomeKindOfService" type="Services.SomeKindOfService, Assembly" singleton="false">
<property name="MaximumFindResults" value="40" />
<property name="Separators" value=" .,:;/\|()[]{}" />
</object>