VBScript の演算子、比較演算子
MsgBox 1=1 MsgBox 1=2 MsgBox 1<>2 MsgBox 1<2 MsgBox 2>1 MsgBox 1<=1 MsgBox 1>=1 Class Foo End Class Dim x, y Set x = New Foo Set y = New Foo MsgBox x Is x MsgBox x Is y
MsgBox 1=1 MsgBox 1=2 MsgBox 1<>2 MsgBox 1<2 MsgBox 2>1 MsgBox 1<=1 MsgBox 1>=1 Class Foo End Class Dim x, y Set x = New Foo Set y = New Foo MsgBox x Is x MsgBox x Is y