简体   繁体   中英

C# & VB6: How to convert 'with' statement to C#?

How can I convert this piece of VB6 code into C#?

http://pastebin.com/f16e19351

I've tried on my own and got so far to:

http://pastebin.com/f7ca199f0

EDIT: Code I'm trying to translate exists here: http://www.codeproject.com/KB/vb-interop/MouseHunter.aspx

You haven't shown the EventThief code, which makes it impossible to tell, really. But in general:

With expression
   .Foo = a
   .Bar = b
End With

would translate to

var x = expression;
x.Foo = a;
x.Bar = b;

(Of course you can specify the type explicitly...)

The commonality here is that expression is only evaluated once. In the particular code you showed, there's no need for an extra variable of course, as the expression is only the local variable in the first place.

Your actual error looks like it's just to do with the types of EventThief.RIGHT_DOWN etc rather than with the WITH statement.

EDIT: Okay, you've now shown the original EventThief code which does use Booleans... but you haven't shown your ported EventThief code. You wrote:

It says et.LEFT_UP is a short

... but it shouldn't be. In the original it's a Boolean , so why is it a short in your port?

The following in VB

With EventStealingInfo
    .RIGHT_DOWN = True
    .RIGHT_UP = True
End With

can be roughly translated to

var EventStealingInfo = new EventThief(){
    RIGHT_DOWN = true,
    RIGHT_UP = true
};

where RIGHT_UP and RIGHT_DOWN are public properties in the EventStealingInfo class.

This construct in C# is known as Object Initializer .

Like so

With EventStealingInfo
    .RIGHT_DOWN = True
    .RIGHT_UP = True
End With

becomes

EventStealingInfo.RIGHT_DOWN = true;
EventStealingInfo.RIGHT_UP = true;

I think it's closer you can go:

EventThief EventStealingInfo = new EventThief()
{
    RIGHT_DOWN = true,
    RIGHT_UP = true
};

Can I call your proposal Option A .

  1. Take community VB6 code that creates a DLL for dealing with Windows hooks.
  2. Translate that to C#

Can I suggest Option B and Option C, which I think will be easier?

Option B
1. Start with Microsoft's C# code for dealing with Windows hooks.
2. Adapt it as necessary, looking at what API calls the VB6 code makes .

Option C
1. Take the built VB6 DLL from the community code .
2. Call that DLL from your new C# application via Interop .

据我所知,C#中没有与With等效的对象,并且在引用对象的成员函数/属性时需要明确列出该对象。

没有等效的C#。

Can't you just change the type of the LEFT_UP to be a bool?

looking at your code and the way you are using the EventThief, you might want to use a flag enumeration so you can set individual bits and then do bitwise comparisons.

The "with" keyword is just a shortcut to save retyping the variable name when you're setting multiple properties. There is no equivalent in C#.

Even if there were you would still have an issue that you're apparently trying to assign a boolean to a short data type.

What's in the EventThief class? Can you simply make the LEFT_UP fields boolean instead?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM