This commit is contained in:
2023-03-27 00:19:30 +02:00
parent 01a926d316
commit df33170f71
28 changed files with 543 additions and 125 deletions

View File

@@ -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;
}
}
}