mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-05-13 16:06:59 +02:00
Updates to Utilities
This commit is contained in:
parent
6cb61ca63e
commit
5508c749ce
13 changed files with 417 additions and 13 deletions
|
@ -7,10 +7,10 @@ namespace Utilities
|
|||
{
|
||||
public bool ContainsKey(TKey key)
|
||||
{
|
||||
return (this.IndexOf(key) != -1);
|
||||
return (this.IndexOfKey(key) != -1);
|
||||
}
|
||||
|
||||
public int IndexOf(TKey key)
|
||||
public int IndexOfKey(TKey key)
|
||||
{
|
||||
for (int index = 0; index < this.Count; index++)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue