1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-20 08:58:00 +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

@ -226,6 +226,11 @@ namespace System.Globalization
return (temp);
}
private this()
{
}
public this(String name) : this(name, true)
{
}