, , , . , static InitVars().
, :
static void Main(string[] args)
{
InitVars();
}
, static InitVars(). . , , Main() .
static void Main(string[] args)
{
Program prog = new Program();
prog.InitVars();
}
If()
if (string.IsNullOrEmpty(_dbName)) _dbName = "";
- :
if (string.IsNullOrEmpty(_dbName))
_dbName = "";
, C-ish, , if(), true, () . , . , , .