15 lines
240 B
C#
15 lines
240 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Password_Manager
|
|||
|
|
{
|
|||
|
|
sealed class PasswordListBox : ListBox
|
|||
|
|
{
|
|||
|
|
public PasswordListBox() : base() { }
|
|||
|
|
|
|||
|
|
public void ReadFromPath()
|
|||
|
|
{
|
|||
|
|
//read all files from
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|