2010-07-14, 12:06 AM
Code:
// Add the arguments for all switchable files
foreach ( SwitchableFile switchableFile in Settings.SwitchableFiles.Values )
{
optionSet.Add( string.Format( "{0}", switchableFile.WhetherToSwitchArg ),
string.Format( "Switch {0}", switchableFile.NormalFile ),
argExistence => Settings.SwitchFile[ switchableFile.Name ] = ( argExistence != null ) );
...
}Only C# gurus will get this one.
Hint 1
Hint 2
answer

