├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── c-sharp-silliness.sln └── src ├── ByValueSleep ├── ByValueSleep.csproj ├── Program.cs └── README.md ├── ConvolutedHelloWorld ├── ConvolutedHelloWorld.csproj ├── Program.cs └── README.md ├── DateTimePastMaxValue ├── DateTimePastMaxValue.csproj ├── Program.cs └── README.md ├── InstanceOfVoid ├── InstanceOfVoid.csproj ├── Program.cs └── README.md ├── NegativeFieldOffset ├── NegativeFieldOffset.csproj ├── Program.cs └── README.md ├── StringMutability ├── Program.cs ├── README.md └── StringMutability.csproj └── StringOverwriting ├── Program.cs ├── README.md └── StringOverwriting.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/README.md -------------------------------------------------------------------------------- /c-sharp-silliness.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/c-sharp-silliness.sln -------------------------------------------------------------------------------- /src/ByValueSleep/ByValueSleep.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/ByValueSleep/ByValueSleep.csproj -------------------------------------------------------------------------------- /src/ByValueSleep/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/ByValueSleep/Program.cs -------------------------------------------------------------------------------- /src/ByValueSleep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/ByValueSleep/README.md -------------------------------------------------------------------------------- /src/ConvolutedHelloWorld/ConvolutedHelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/ConvolutedHelloWorld/ConvolutedHelloWorld.csproj -------------------------------------------------------------------------------- /src/ConvolutedHelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/ConvolutedHelloWorld/Program.cs -------------------------------------------------------------------------------- /src/ConvolutedHelloWorld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/ConvolutedHelloWorld/README.md -------------------------------------------------------------------------------- /src/DateTimePastMaxValue/DateTimePastMaxValue.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/DateTimePastMaxValue/DateTimePastMaxValue.csproj -------------------------------------------------------------------------------- /src/DateTimePastMaxValue/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/DateTimePastMaxValue/Program.cs -------------------------------------------------------------------------------- /src/DateTimePastMaxValue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/DateTimePastMaxValue/README.md -------------------------------------------------------------------------------- /src/InstanceOfVoid/InstanceOfVoid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/InstanceOfVoid/InstanceOfVoid.csproj -------------------------------------------------------------------------------- /src/InstanceOfVoid/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/InstanceOfVoid/Program.cs -------------------------------------------------------------------------------- /src/InstanceOfVoid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/InstanceOfVoid/README.md -------------------------------------------------------------------------------- /src/NegativeFieldOffset/NegativeFieldOffset.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/NegativeFieldOffset/NegativeFieldOffset.csproj -------------------------------------------------------------------------------- /src/NegativeFieldOffset/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/NegativeFieldOffset/Program.cs -------------------------------------------------------------------------------- /src/NegativeFieldOffset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/NegativeFieldOffset/README.md -------------------------------------------------------------------------------- /src/StringMutability/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/StringMutability/Program.cs -------------------------------------------------------------------------------- /src/StringMutability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/StringMutability/README.md -------------------------------------------------------------------------------- /src/StringMutability/StringMutability.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/StringMutability/StringMutability.csproj -------------------------------------------------------------------------------- /src/StringOverwriting/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/StringOverwriting/Program.cs -------------------------------------------------------------------------------- /src/StringOverwriting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/StringOverwriting/README.md -------------------------------------------------------------------------------- /src/StringOverwriting/StringOverwriting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevAndersen/c-sharp-silliness/HEAD/src/StringOverwriting/StringOverwriting.csproj --------------------------------------------------------------------------------