Cosmos/source/Indy.IL2CPU.IL/CustomImplementations/System/GCImpl.cs
mterwoord_cp 37c9966421
2008-05-19 09:41:18 +00:00

16 lines
No EOL
364 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Indy.IL2CPU.Plugs;
namespace Indy.IL2CPU.IL.CustomImplementations.System
{
[Plug(Target=typeof(GC))]
public static class GCImpl
{
public static void nativeSuppressFinalize(object o) {
// not implemented yet
}
}
}