By default, VS puts the compiler directives at the beginning of the line:
public ServiceStatus IsServiceAvailable(string author, string reader, string deliveryWay)
{
#if(DEBUG)
return ServiceStatus.Available;
#else
return m_channel.IsServiceAvailableForReceiver(author, reader, deliveryWay);
#endif
}
Is there a reason why it isnt aligned like this by default?
public ServiceStatus IsServiceAvailable(string author, string reader, string deliveryWay)
{
#if(DEBUG)
return ServiceStatus.Available;
#else
return m_channel.IsServiceAvailableForReceiver(author, reader, deliveryWay);
#endif
}