Cosmos/source/Cosmos.IL2CPU/Extensions/ExceptionRegionExtensions.cs
2017-01-28 00:27:45 -06:00

14 lines
304 B
C#

using System;
using System.Reflection;
using System.Reflection.Metadata;
namespace Cosmos.IL2CPU
{
public static class ExceptionRegionExtensions
{
public static Type GetCatchType(this ExceptionRegion aThis)
{
throw new NotImplementedException();
}
}
}