vote up 2 vote down star
2

Given this:

Interface IBase {string X {get;set;}}
Interface ISuper {string Y {get;set;}}

class Base : IBase {etc...}
class Super : Base, ISuper {etc...}

void Questionable (Base b) {
  Console.WriteLine ("The class supports the following interfaces... ")
  // The Magic Happens Here
}

What can I replace "The Magic" with to display the supported interfaces on object b?

Yes, I know by being of class Base it supports "IBase", the real hierarchy is more complex that this. :)

Thanks! -DF5

EDIT: Now that I've seen the answer I feel stupid for not tripping over that via Intellisense. :)

Thanks All! -DF5

flag

When you have the interface list, what are you going to do with it? – Ilya Ryzhenkov Dec 27 '08 at 23:52
Feed it to a method that knows how to generate UI components (based on the Interfaces) to allow the user to manipulate property values (via the Interface) of some objects. IE: If the object supports the IDateTimeFormat, then I should present a drop down of common date time formats. – DrFloyd5 Dec 28 '08 at 1:30
Some objects have 3~5 UI editable properties... – DrFloyd5 Dec 28 '08 at 1:30

4 Answers

vote up 8 vote down check

The Magic :

foreach (Type iface in b.GetType().GetInterfaces())
    Console.WriteLine(iface.Name);
link|flag
vote up 2 vote down

Heh, I saw the Console.WriteLine and thought you were looking for a string representation. Here it is anyways

public string GetInterfacesAsString(Type type) { 
  return type.GetInterfaces().Select(t => t.ToString()).Aggregate(x,y => x + "," + y);
}
link|flag
GetInterfaces returns all interfaces, not only immediate. – Ilya Ryzhenkov Dec 27 '08 at 23:07
Thanks, didn't realize that. I'll update the answer – JaredPar Dec 27 '08 at 23:08
That's not entirely correct either :) You have to deal with nested interfaces, which should be converted from CLR to C# notation. – Ilya Ryzhenkov Dec 27 '08 at 23:11
@Ilya, picky picky :). What about interfaces which are entirely unrepresentable in C#? For intance <>Foo is a legal interface name. – JaredPar Dec 27 '08 at 23:14
@JaredPar, Well, not just picky :) I wanted to put some attention to the topic of what is the purpose of constructing comma-delimited list of interfaces, how this list is going to be used and what sense does it make. – Ilya Ryzhenkov Dec 27 '08 at 23:50
show 2 more comments
vote up 2 vote down
foreach (var t in b.GetType().GetInterfaces())
{
    Console.WriteLine(t.ToString());
}
link|flag
Is there any good reason to prefer var over Type? I tend to avoid var as much as possible but without good justification... – Diadistis Dec 27 '08 at 23:12
Diadistis, search for "to var or not to var". – Ilya Ryzhenkov Dec 27 '08 at 23:13
I always use var in foreach loops unless I'm iterating over a collection that doesn't implement IEnumerable<T>. The call to "GetInterfaces" makes it clear what type "t" is in this example, so why bother repeating it in the declaration? (IMHO) – Matt Hamilton Dec 27 '08 at 23:41
vote up 8 vote down

b.GetType().GetInterfaces()

link|flag

Your Answer

Get an OpenID
or

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