I got a Type whose FullName is (if this helps) :
"System.Collections.ObjectModel.ObservableCollection`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]"
From that Type, I'd like to get "System.Collections.ObjectModel.ObservableCollection" as a string but I'd like to do it "cleanly", which means, without spliting the string with the char '`'.
I think the strategy is to get something like a Type or something else whose FullName will be "System.Collections.ObjectModel.ObservableCollection" but I really don't manage to do it :/
System.Collections.ObjectModel.ObservableCollectionat the IL level after compilation it's name isSystem.Collections.ObjectModel.ObservableCollection`1andSystem.Typerepresents a type as visible at the IL level, not how a specific language (C# in this case) represent it. And even for C# it's namedSystem.Collections.ObjectModel.ObservableCollection<>when the type is open (no type parameter) – VirtualBlackFox Dec 1 '11 at 9:51