That command would translate to this:
I am getting a slightly different result than your desired result though.
using (MagickImage image = new MagickImage("{input file path}")) { image.AddProfile(ColorProfile.SRGB); image.Strip(); image.Negate(); image.Alpha(AlphaOption.Copy); image.Colorize(MagickColors.Black, new Percentage(100)); image.Write("{Output file path}"); }