Test if object implements interface

前端 未结 12 1574
情歌与酒
情歌与酒 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:26

    if (object is IBlah)
    

    or

    IBlah myTest = originalObject as IBlah
    
    if (myTest != null)
    

提交回复
热议问题