📜  srs 代表 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:15.330000             🧑  作者: Mango

代码示例1
int x = 5;Console.WriteLine(x < 6); // Prints "True" because 5 is less than 6.Console.WriteLine(x > 8); // Prints "False" because 5 is not greater than 8. string foo = "foo";Console.WriteLine(foo == "bar"); // Prints "False" because "foo" does not equal "bar".