C# 中没有用于字符串的 OR 操作数吗?
我正在查看 Microsoft C# 操作数页面 - 没有任何类型的 OR 字符串。
我有一个我正在尝试编写的 if 语句:
if (Convert.ToString(r["first_name"]) != "Antoine" || "Brad" || "Programming" || "Admin" || "Patricia")
{
哪个 C# 因此错误而窒息:
CS0019: Operator '||' cannot be applied to operands of type 'bool' and 'string'
我习惯了 Python 和 PHP,在这些地方可以做类似的事情。
C# 的正确语法是什么?