// Compiler options: -doc:xml-019.xml using System; namespace Testing { public class Test { public static void Main () { } /// /// comment for unary operator /// public static bool operator ! (Test t) { return false; } /// /// comment for binary operator /// public static int operator + (Test t, int b) { return b; } } }