Cosmos/source/IL2CPU.Tests/Tests/TwoIfStatements/TwoIfStatements.cs
2007-09-20 15:42:55 +00:00

21 lines
No EOL
238 B
C#

class Program
{
static void Main()
{
int result = GetValue(false, true);
}
public static int GetValue(bool a, bool b)
{
if (a)
{
return 0xA0;
}
if (b)
{
return 0xB0;
}
return 0x10;
}
}