Files
Adam Hathcock fb415d0416
.NET Build and Publish / build (push) Has been cancelled
Fix rhino7 fileio (#34)
* fix issue with basetype being null

* add Rhino.FileIO properly

* update csharpier
2024-10-10 10:13:02 +01:00

11 lines
336 B
C#

namespace Rhino.FileIO;
public partial class SHA1OpenNURBS
{
protected override void HashCore(byte[] array, int ibStart, int cbSize) => throw new NotImplementedException();
protected override byte[] HashFinal() => throw new NotImplementedException();
public override void Initialize() => throw new NotImplementedException();
}