5-Minute C# Drop-In Wrapper
Spawn the bare-metal binary, write single-line NDJSON to stdin, and receive 100% schema-compliant output from stdout.
// Process Spawn & Standard Pipe Integration
var startInfo = new ProcessStartInfo {
FileName = "justified_j14b.exe",
Arguments = "--pipe --license YOUR_LICENSE_KEY_HERE",
RedirectStandardInput = true,
RedirectStandardOutput = true,
UseShellExecute = false,
CreateNoWindow = true
};
using var process = Process.Start(startInfo);
await process.StandardInput.WriteLineAsync("{\"action\":\"transform\",\"payload\":\"...\"}");
string result = await process.StandardOutput.ReadLineAsync();