1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 16:40:26 +02:00

Breakpoint hotkeys, autocomplete fix

This commit is contained in:
Brian Fiete 2019-12-13 14:25:15 -08:00
parent d6a9f4c9ca
commit 1c6c06fa4d
20 changed files with 316 additions and 262 deletions

View file

@ -290,11 +290,19 @@ namespace System.Collections.Generic
}
/// Number of elements in this hashset
public int32 Count
public int Count
{
get { return mCount; }
}
public bool IsEmpty
{
get
{
return mCount == 0;
}
}
/// Whether this is readonly
/*bool ICollection<T>.IsReadOnly
{