This repository has been archived on 2025-09-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Password-Manager-Legacy/Password Manager/PasswordList.cs
2023-03-24 12:01:08 +01:00

15 lines
240 B
C#

using System;
namespace Password_Manager
{
sealed class PasswordListBox : ListBox
{
public PasswordListBox() : base() { }
public void ReadFromPath()
{
//read all files from
}
}
}