views:

24

answers:

1

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>
A: 

After a 20min of trying and googling I found a simple solution:

<property name="Separators" value=" &#9;.,:;/\|()[]{}" />
egonyx