Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
3  
There is no type named System.Collections.ObjectModel.ObservableCollection at the IL level after compilation it's name is System.Collections.ObjectModel.ObservableCollection`1 and System.Type represents 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 named System.Collections.ObjectModel.ObservableCollection<> when the type is open (no type parameter) – VirtualBlackFox Dec 1 '11 at 9:51

2 Answers

up vote 3 down vote accepted

The "real" type name is not System.Collections.ObjectModel.ObservableCollection, it's System.Collections.ObjectModel.ObservableCollection`1, as VirtualBlackFox correctly mentions (because it's a generic type, `1 indicates the number of generic parameters).

You can get quite close by using type.Name (gives ObservableCollection`1) and type.Namespace (gives System.Collections.ObjectModel).

Not that your type is most probably not the generic type, but its specification with generic parameter = string.

You can get the parameter type(s) (string in your case) by using type.GetGenericArguments().

share|improve this answer
SO considering ` as a special character is really annoying on such questions isn't it ? – VirtualBlackFox Dec 1 '11 at 10:07
@VirtualBlackFox: yes, but I've just found a solution here: using double backticks :-P – Vlad Dec 1 '11 at 10:09
nice I used the html code block and backtick char code but double backticks is cleaner (If not really more readable). Also added an answer with the point in spec defining it. – VirtualBlackFox Dec 1 '11 at 10:12
@VirtualBlackFox: I tried html &#x60;, but it seems to fail inside "inline" backtick'ed code. – Vlad Dec 1 '11 at 10:18
yes need to use the html <code> tag directly for char codes to work : &#96; versus <code>&#96;</code> (But it doesn't work in comments as even filtered html is prohibited) – VirtualBlackFox Dec 1 '11 at 10:19
show 3 more comments

Just to complement Vlad's answer don't accept mine.

The ` character is specified in the CLI (ECMA-335) spec directly so it's safe and "clean" to parse it (As long as your C# code run under the CLI infrastructure) :

10.7.2 :

CLS-compliant generic type names are encoded using the format "name[`arity]" , where […] indicates that the grave accent character "`" and arity together are optional. The encoded name shall follow these rules:

  1. name shall be an ID (see Partition II) that does not contain the "`" character.
  2. arity is specified as an unsigned decimal number without leading zeros or spaces.
  3. For a normal generic type, arity is the number of type parameters declared on the type.
  4. For a nested generic type, arity is the number of newly introduced type parameters.
share|improve this answer
Thanks for the specs reference! It's always good to know the complete story. – Vlad Dec 1 '11 at 10:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.