csharpier
csharpier copied to clipboard
Comment on conditional causes line break
class ClassName
{
void MethodName()
{
CallMethod(
someValue________________________________,
// causes this to break
value_______________________ != null
? 1
: 2
);
CallMethod(
someValue________________________________,
value_______________________ != null ? 1 : 2
);
}
}