fb415d0416
.NET Build and Publish / build (push) Has been cancelled
* fix issue with basetype being null * add Rhino.FileIO properly * update csharpier
11 lines
336 B
C#
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();
|
|
}
|