summary refs log tree commit diff
path: root/crypto/src/util/TypeExtensions.cs
blob: e2aeae4dc9bdb3b1bd95e6b47db75600498d99ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#if NEW_REFLECTION

using System;
using System.Reflection;

namespace Org.BouncyCastle
{
    internal static class TypeExtensions
    {
        public static bool IsInstanceOfType(this Type type, object instance)
        {
            return instance != null && type.GetTypeInfo().IsAssignableFrom(instance.GetType().GetTypeInfo());
        }
    }
}

#endif