Transaction.Equality(Transaction, Transaction) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Tests whether two specified Transaction instances are equivalent.
public:
static bool operator ==(System::Transactions::Transaction ^ x, System::Transactions::Transaction ^ y);
public static bool operator == (System.Transactions.Transaction? x, System.Transactions.Transaction? y);
public static bool operator == (System.Transactions.Transaction x, System.Transactions.Transaction y);
static member ( = ) : System.Transactions.Transaction * System.Transactions.Transaction -> bool
Public Shared Operator == (x As Transaction, y As Transaction) As Boolean
Parameters
The Transaction instance that is to the left of the equality operator.
The Transaction instance that is to the right of the equality operator.
Returns
true
if x
and y
are equal; otherwise, false
.
Remarks
The equivalent method for this operator is Transaction.Equals.
Applies to
GitHub'da bizimle işbirliği yapın
Bu içeriğin kaynağı GitHub'da bulunabilir; burada ayrıca sorunları ve çekme isteklerini oluşturup gözden geçirebilirsiniz. Daha fazla bilgi için katkıda bulunan kılavuzumuzu inceleyin.