wip: add c# version of sql injection code

This commit is contained in:
Michael Hohn
2024-12-02 14:58:44 -08:00
committed by =Michael Hohn
commit 690a6fc046
6 changed files with 221 additions and 0 deletions

9
HelloWorld/Program.cs Normal file
View File

@@ -0,0 +1,9 @@
using System;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}