TestId.GreaterThan 运算符
表示一个大于运算符 (>),该大于运算符用于确定所提供的对象在排序列表中是否出现在另一个所提供的对象之前。
命名空间: Microsoft.VisualStudio.TestTools.Common
程序集: Microsoft.VisualStudio.QualityTools.Common(在 Microsoft.VisualStudio.QualityTools.Common.dll 中)
语法
声明
Public Shared Operator > ( _
left As TestId, _
right As TestId _
) As Boolean
public static bool operator >(
TestId left,
TestId right
)
public:
static bool operator >(
TestId^ left,
TestId^ right
)
static let inline (>)
left:TestId *
right:TestId : bool
JScript 不支持重载运算符。
参数
- left
类型:Microsoft.VisualStudio.TestTools.Common.TestId
TestId 对象。
- right
类型:Microsoft.VisualStudio.TestTools.Common.TestId
TestId 对象。
返回值
类型:System.Boolean
如果 left 对象出现在 right 对象之前,则该值为 true;否则为 false。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。