バージョン

等価判定演算子 オペレータ (Indentation)

2 つの Indentation 構造の値を比較して一致するかどうか調べます。
シンタックス
'宣言
 
Public Operator =( _
   ByVal indent1 As Indentation, _
   ByVal indent2 As Indentation _
) As Boolean
public bool operator ==( 
   Indentation indent1,
   Indentation indent2
)

パラメータ

indent1
1 つの構造
indent2
他の構造

戻り値の型

2 つのインスタンスが等しい場合は True、そうでない場合は False
参照