![]() |
DevLynx CAB Shell Application |
Page Title |
#region Collapsible region
// Test method
public void TestMethod(string s, int x)
{
#if DEBUG
// Debug code
x = x + 1;
s = x.ToString();
#else
// Release code
x = x + 5;
s = x.ToString();
#endif
Console.WriteLine("The string = " + s);
}
#endregion