mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 13:28:41 +00:00
14 lines
304 B
C#
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();
|
|
}
|
|
}
|
|
}
|