mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
28 lines
No EOL
896 B
C#
28 lines
No EOL
896 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Indy.IL2CPU.Plugs;
|
|
|
|
namespace Indy.IL2CPU.IL.X86.CustomImplementations.System {
|
|
[Plug(Target = typeof(Exception))]
|
|
public static class ExceptionImpl {
|
|
public static string ToString(Exception aThis) {
|
|
return aThis.Message;
|
|
}
|
|
|
|
//[PlugMethod(Signature = "System_String___System_Exception_GetClassName____")]
|
|
public static unsafe string GetClassName(uint* aThis) {
|
|
int xObjectType = (int)*aThis;
|
|
return VTablesImpl.GetTypeName(xObjectType);
|
|
}
|
|
|
|
[PlugMethod(Signature = "System_String__System_Exception_GetMessageFromNativeResources_System_Exception_ExceptionMessageKind_")]
|
|
public static string GetMessageFromNativeResources(int aKind) {
|
|
if (aKind == 0x3) {
|
|
return "Out of memory!";
|
|
}
|
|
return "<Exception Message from Native Source>";
|
|
}
|
|
}
|
|
} |