System.Windows.Forms.Message.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
		public static bool operator == (Message a, Message b)
		{
			return (a.hwnd == b.hwnd) && (a.lParam == b.lParam) && (a.msg == b.msg) && (a.result == b.result) && (a.wParam == b.wParam);
		}