Skip to content

Instantly share code, notes, and snippets.

public partial class Form1 : Form
{
static readonly string _defaultPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "mytext.txt");
readonly PersonsRepository _repository;
public Form1()
: this(new PersonsRepository(_defaultPath))
{
}