mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-01 05:45:59 +02:00
15 lines
194 B
Beef
15 lines
194 B
Beef
namespace System
|
|
{
|
|
struct Void : void, IHashable
|
|
{
|
|
public override void ToString(String strBuffer)
|
|
{
|
|
strBuffer.Append("void");
|
|
}
|
|
|
|
public int GetHashCode()
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
}
|