Test if object implements interface

前端 未结 12 1601
情歌与酒
情歌与酒 2020-11-28 01:03

What is the simplest way of testing if an object implements a given interface in C#? (Answer to this question in Java)

12条回答
  •  天命终不由人
    2020-11-28 01:27

    Using the is or as operators is the correct way if you know the interface type at compile time and have an instance of the type you are testing. Something that no one else seems to have mentioned is Type.IsAssignableFrom:

    if( typeof(IMyInterface).IsAssignableFrom(someOtherType) )
    {
    }
    

    I think this is much neater than looking through the array returned by GetInterfaces and has the advantage of working for classes as well.

提交回复
热议问题