C# Binary Behavior

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Are there any good examples of how to create a Binary Behavior using C#?
And, is it possible to do everything you can do with C++ in a C# Binary
Behavior?
 
Criddy,

Can you be more specific about what you mean by a binary behavior?
 
Criddy,

I just looked at binary behaviors in the MSDN documentation. It should
be possible, since they are nothing more than COM objects, but it will
require a lot of COM interop on your part. Unless someone has created all
of the definitions, you probably have a lot of work on your hands.

As for doing everything you can do with C++ in C#, I haven't come across
anything yet that I couldn't do (without any serious workarounds as well).
Unless you are trying to write device drivers, I would say there is nothing
you couldn't do in C# that C++ could do (except the obvious, like export
functions from DLLS, stuff like that).

What is it that you are concerned about or trying to do?

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top