Cosmos/source/Cosmos.System.Plugs/System/GuidImpl.cs
José Pedro a6353d9a0e Added back FAT plugs.
Fixed GetTypeFromDefinition for nested types.
2017-02-20 20:02:49 +00:00

15 lines
278 B
C#

using System;
using Cosmos.IL2CPU.Plugs;
namespace Cosmos.System.Plugs.System
{
[Plug(Target = typeof(Guid))]
public class GuidImpl
{
public static Guid NewGuid()
{
return new Guid(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
}
}
}