ReportExpression<T>.Equality 연산자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
두 식이 같은지 검사합니다.
오버로드
Equality(ReportExpression<T>, ReportExpression<T>) |
두 ReportExpression<T> 개체가 같은지 검사합니다. |
Equality(ReportExpression<T>, String) |
식과 ReportExpression<T> 개체가 같은지 검사합니다. |
Equality(ReportExpression<T>, T) |
개체와 ReportExpression<T> 개체가 같은지 검사합니다. |
Equality(String, ReportExpression<T>) |
식과 ReportExpression<T> 개체가 같은지 검사합니다. |
Equality(T, ReportExpression<T>) |
개체와 ReportExpression<T> 개체가 같은지 검사합니다. |
Equality(ReportExpression<T>, ReportExpression<T>)
두 ReportExpression<T> 개체가 같은지 검사합니다.
public:
static bool operator ==(Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> left, Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> right);
public static bool operator == (Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> left, Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> right);
static member ( = ) : Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> * Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> -> bool
Public Shared Operator == (left As ReportExpression(Of T), right As ReportExpression(Of T)) As Boolean
매개 변수
- left
- ReportExpression<T>
ReportExpression<T> 개체입니다.
- right
- ReportExpression<T>
ReportExpression<T> 개체입니다.
반환
두 ReportExpression<T> 개체가 같으면 True
이고, 그렇지 않으면 false
입니다.
설명
이 연산자에 대 한 해당 메서드는 <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Equals%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%29?displayProperty=fullName>
적용 대상
Equality(ReportExpression<T>, String)
식과 ReportExpression<T> 개체가 같은지 검사합니다.
public:
static bool operator ==(Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> left, System::String ^ right);
public static bool operator == (Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> left, string right);
static member ( = ) : Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> * string -> bool
Public Shared Operator == (left As ReportExpression(Of T), right As String) As Boolean
매개 변수
- left
- ReportExpression<T>
ReportExpression<T> 개체입니다.
- right
- String
식 문자열입니다.
반환
식이 ReportExpression<T> 개체와 같으면 True
이고, 그렇지 않으면 false
입니다.
설명
이 연산자에 대 한 해당 메서드는 <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Equals%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%2CSystem.String%29?displayProperty=fullName>
적용 대상
Equality(ReportExpression<T>, T)
개체와 ReportExpression<T> 개체가 같은지 검사합니다.
public:
static bool operator ==(Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> left, T right);
public static bool operator == (Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> left, T right);
static member ( = ) : Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> * 'T -> bool
Public Shared Operator == (left As ReportExpression(Of T), right As T) As Boolean
매개 변수
- left
- ReportExpression<T>
ReportExpression<T> 개체입니다.
- right
- T
T
형식의 개체입니다.
반환
개체가 ReportExpression<T> 개체와 같으면 True
이고, 그렇지 않으면 false
입니다.
설명
이 연산자에 대 한 해당 메서드는 <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Equals%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%2C%600%29?displayProperty=fullName>
적용 대상
Equality(String, ReportExpression<T>)
식과 ReportExpression<T> 개체가 같은지 검사합니다.
public:
static bool operator ==(System::String ^ left, Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> right);
public static bool operator == (string left, Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> right);
static member ( = ) : string * Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> -> bool
Public Shared Operator == (left As String, right As ReportExpression(Of T)) As Boolean
매개 변수
- left
- String
식 문자열입니다.
- right
- ReportExpression<T>
ReportExpression<T> 개체입니다.
반환
식이 ReportExpression<T> 개체와 같으면 True
이고, 그렇지 않으면 false
입니다.
설명
이 연산자에 대 한 해당 메서드는 <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Equals%28System.String%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%29?displayProperty=fullName>
적용 대상
Equality(T, ReportExpression<T>)
개체와 ReportExpression<T> 개체가 같은지 검사합니다.
public:
static bool operator ==(T left, Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> right);
public static bool operator == (T left, Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> right);
static member ( = ) : 'T * Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> -> bool
Public Shared Operator == (left As T, right As ReportExpression(Of T)) As Boolean
매개 변수
- left
- T
T
형식의 개체입니다.
- right
- ReportExpression<T>
ReportExpression<T> 개체입니다.
반환
개체가 ReportExpression<T> 개체와 같으면 True
이고, 그렇지 않으면 false
입니다.
설명
이 연산자에 대 한 해당 메서드는 <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Equals%28%600%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%29?displayProperty=fullName>