Watinスクリプトで、「新しいIEのハンドルが現在のIEのハンドルと等しくない」という条件で別のブラウザーにアタッチしたい場合、私のコードは次のとおりです。
var hwnd = currentIE.hWnd;
var newIE= Browser.AttachTo<IE>(Find.By("hwnd", handle => !handle.Equals(hwnd) ));
Visual Studio からの警告があります。
"suspicious comparison: there is no type in the solution which is inherited from both 'string' and 'System.IntPtr'
ここで何が問題なのですか?