次のように定義されたクラスがあります。
Public Class DeviceConfig
Private _maxNumCodesGlobal As Integer
Private _maxNumCodesDataMatrix As Integer
Private _maxNumCodesQR As Integer
Private _maxNumCodesBarcode As Integer
Private _partialResults As String
Private _allowIdenticalSymbols As String
Private _datamatrixValidation As Integer
Private _datamatrixValidationType
'AND MUCH MORE PROPERTIES
'GETTERS & SETTERS
End Class
ご覧のとおり、このクラスのプロパティの長いリストです。
インスタンスのプロパティの値を別のインスタンスのプロパティの値と比較する必要があります。
それらすべてを反復処理する方法はありますか、または両方のクラスを比較して、同じプロパティ値を持っているかどうかを true/false にする方法はありますか?
if instance1=instance2 then true
ありがとうございました