Skip to content

Commit

Permalink
Added missing file DecimalImpl.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
fanoI committed Feb 29, 2016
1 parent 2c74538 commit a95ea1b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions source/Cosmos.System.Plugs/System/DecimalImpl.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using System;

using Cosmos.IL2CPU.Plugs;

namespace Cosmos.System.Plugs.System
{
[Plug(Target = typeof(decimal))]
public static class DecimalImpl
{
public static int GetHashCode(ref decimal aThis)
{
throw new NotImplementedException("Decimal.GetHashCode()");
}
}
}

0 comments on commit a95ea1b

Please sign in to comment.