1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Fixed default ctor issues

This commit is contained in:
Brian Fiete 2020-01-25 07:03:14 -08:00
parent 7b22b37822
commit 6ba8bdc14c
3 changed files with 16 additions and 1 deletions

View file

@ -93,6 +93,11 @@ namespace System.Threading
}
}
private this()
{
}
public this(ThreadStart start)
{
if (start == null)