kill me
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
using System;
|
||||
|
||||
namespace Password_Manager
|
||||
namespace Profiles
|
||||
{
|
||||
sealed class ProfileList : IList<Profile>
|
||||
{
|
||||
@@ -59,5 +57,15 @@ namespace Password_Manager
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
public string[] GetNameList()
|
||||
{
|
||||
string[] array = new string[this.Length];
|
||||
for (int i = 0; i < this.Length; i++)
|
||||
{
|
||||
array[i] = this[i].Name;
|
||||
}
|
||||
return array;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user