OpenXmlComparableSimpleValue<T>.LessThan 操作员

定义

确定左侧作数是否小于右侧作数。

public static bool operator <(DocumentFormat.OpenXml.OpenXmlComparableSimpleValue<T> left, DocumentFormat.OpenXml.OpenXmlComparableSimpleValue<T> right);
public static bool operator <(DocumentFormat.OpenXml.OpenXmlComparableSimpleValue<T>? left, DocumentFormat.OpenXml.OpenXmlComparableSimpleValue<T>? right);
static member ( < ) : DocumentFormat.OpenXml.OpenXmlComparableSimpleValue<'T (requires 'T : struct)> * DocumentFormat.OpenXml.OpenXmlComparableSimpleValue<'T (requires 'T : struct)> -> bool
Public Shared Operator < (left As OpenXmlComparableSimpleValue(Of T), right As OpenXmlComparableSimpleValue(Of T)) As Boolean

参数

left
OpenXmlComparableSimpleValue<T>

左侧作数或 null。

right
OpenXmlComparableSimpleValue<T>

右侧作数或 null。

返回

如果左侧作数小于右侧作数,则为 True;否则为 false。

适用于