// Compiler options: -doc:xml-033.xml
/// help text
public class MyClass
{
/// help text
public static void Main()
{
}
/// help text
public static explicit operator int(MyClass f)
{
return 0;
}
/// help text
public static implicit operator char(MyClass f)
{
return ' ';
}
}