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:
parent
d6a9f4c9ca
commit
1c6c06fa4d
20 changed files with 316 additions and 262 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue