The -monochrome option is an option for when you read an image. And that is why I added this property to the MagickReadSettings class. Below is a simple example.
using (MagickImage image = new MagickImage()) { MagickReadSettings readSettings = new MagickReadSettings() { UseMonochrome = true }; image.Read("your-file", readSettings); }