Acephalus
July 18th, 2003, 08:46 AM
When I try to "Build Comment Web Pages" the visual studio comes up with a message box saying there were minor errors. Namely, "Code element page operator! is incomplete". Here's an example code, to try for yourself:
public class C {
[System.STAThread]
static void Main() {
bool b = !new C();
}
/// <summary>increment</summary>
/// <param name="c">c</param>
/// <returns>b</returns>
public static bool operator!(C c) {
return true;
}
}But if I put that same comment on any other non-operator-overloading method it works! I'm guessing there might be a different way of commenting those methods... Does anyone have any info on this?
public class C {
[System.STAThread]
static void Main() {
bool b = !new C();
}
/// <summary>increment</summary>
/// <param name="c">c</param>
/// <returns>b</returns>
public static bool operator!(C c) {
return true;
}
}But if I put that same comment on any other non-operator-overloading method it works! I'm guessing there might be a different way of commenting those methods... Does anyone have any info on this?