Click or drag to resize
Akka.NETTypeExtensionsImplements Method
Overload List
  NameDescription
Public methodStatic memberCode exampleImplementsT(Type)
Returns true if type implements/inherits T.
Examples

typeof(object[]).Implements<IEnumerable>() --> true

Public methodStatic memberCode exampleImplements(Type, Type)
Returns true if type implements/inherits moreGeneralType.
Examples

typeof(object[]).Implements(typeof(IEnumerable)) --> true

Top
See Also