├── .gitattributes ├── .gitignore ├── io_txt_file ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── app.config └── io_txt_file.csproj └── io_txt_file_ns.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/.gitignore -------------------------------------------------------------------------------- /io_txt_file/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/io_txt_file/Form1.Designer.cs -------------------------------------------------------------------------------- /io_txt_file/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/io_txt_file/Form1.cs -------------------------------------------------------------------------------- /io_txt_file/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/io_txt_file/Form1.resx -------------------------------------------------------------------------------- /io_txt_file/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/io_txt_file/Program.cs -------------------------------------------------------------------------------- /io_txt_file/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/io_txt_file/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /io_txt_file/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/io_txt_file/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /io_txt_file/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/io_txt_file/Properties/Resources.resx -------------------------------------------------------------------------------- /io_txt_file/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/io_txt_file/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /io_txt_file/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/io_txt_file/Properties/Settings.settings -------------------------------------------------------------------------------- /io_txt_file/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/io_txt_file/app.config -------------------------------------------------------------------------------- /io_txt_file/io_txt_file.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/io_txt_file/io_txt_file.csproj -------------------------------------------------------------------------------- /io_txt_file_ns.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/io_txt_file_ns/HEAD/io_txt_file_ns.sln --------------------------------------------------------------------------------