mixedreality/com.microsoft.mixedreality..../Core/Extensions/AssemblyExtensions.cs

29 lines
810 B
C#
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace Microsoft.MixedReality.Toolkit
{
public static class AssemblyExtensions
{
/// <summary>
/// Assembly.GetTypes() can throw in some cases. This extension will catch that exception and return only the types which were successfully loaded from the assembly.
/// </summary>
public static IEnumerable<Type> GetLoadableTypes(this Assembly @this)
{
try
{
return @this.GetTypes();
}
catch (ReflectionTypeLoadException e)
{
return e.Types.Where(t => t != null);
}
}
}
}