├── .gitignore ├── CreateThreadExample ├── CreateThreadExample.sln ├── CreateThreadExample │ ├── CreateThreadExample.csproj │ ├── Headers.cs │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx └── XOREncrypt │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── XOREncrypt.csproj └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/CSharpCreateThreadExample/HEAD/.gitignore -------------------------------------------------------------------------------- /CreateThreadExample/CreateThreadExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/CSharpCreateThreadExample/HEAD/CreateThreadExample/CreateThreadExample.sln -------------------------------------------------------------------------------- /CreateThreadExample/CreateThreadExample/CreateThreadExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/CSharpCreateThreadExample/HEAD/CreateThreadExample/CreateThreadExample/CreateThreadExample.csproj -------------------------------------------------------------------------------- /CreateThreadExample/CreateThreadExample/Headers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/CSharpCreateThreadExample/HEAD/CreateThreadExample/CreateThreadExample/Headers.cs -------------------------------------------------------------------------------- /CreateThreadExample/CreateThreadExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/CSharpCreateThreadExample/HEAD/CreateThreadExample/CreateThreadExample/Program.cs -------------------------------------------------------------------------------- /CreateThreadExample/CreateThreadExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/CSharpCreateThreadExample/HEAD/CreateThreadExample/CreateThreadExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CreateThreadExample/CreateThreadExample/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/CSharpCreateThreadExample/HEAD/CreateThreadExample/CreateThreadExample/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CreateThreadExample/CreateThreadExample/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/CSharpCreateThreadExample/HEAD/CreateThreadExample/CreateThreadExample/Properties/Resources.resx -------------------------------------------------------------------------------- /CreateThreadExample/XOREncrypt/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/CSharpCreateThreadExample/HEAD/CreateThreadExample/XOREncrypt/Program.cs -------------------------------------------------------------------------------- /CreateThreadExample/XOREncrypt/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/CSharpCreateThreadExample/HEAD/CreateThreadExample/XOREncrypt/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CreateThreadExample/XOREncrypt/XOREncrypt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/CSharpCreateThreadExample/HEAD/CreateThreadExample/XOREncrypt/XOREncrypt.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djhohnstein/CSharpCreateThreadExample/HEAD/README.md --------------------------------------------------------------------------------