mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
15 lines
349 B
C#
15 lines
349 B
C#
using System;
|
|
using System.Reflection;
|
|
using System.Reflection.Metadata;
|
|
|
|
namespace Cosmos.IL2CPU
|
|
{
|
|
public static class ExceptionRegionExtensions
|
|
{
|
|
//TODO: Move this to Cosmos.IL2CPU
|
|
public static Type GetCatchType(this ExceptionRegion aThis)
|
|
{
|
|
throw new Exception("NetCore Fix Me");
|
|
}
|
|
}
|
|
}
|