void WriteBoolean(IDbgTextWriter output, bool?value) { if (value == null) { return; } output.WriteYesNo(value.Value); }