It will be fixed in the next version of Magick.NET that uses a percentage as the parameter. You will be able to do this:
// convert -threshold 80% 1.jpg 2.jpgusing (MagickImage image = new MagickImage("1.jpg")) { image.Threshold(80); image.Write("2.jpg"); }