Search Results

2
votes
4answers
484 views

Modifications of arrays passed by reference (C#)

I recently ran across some 3rd party C# code which does the following: public int RecvByteDataFromPrinter(ref byte[] byteData) { byte[] recvdata = new byte[1024]; ///...fil …
0
votes

Create a cross platform Windows, Mac OS X application

As long as you are not tied to languages, it looks like Java is a good candidate. Pair that up with SWT for the GUI, and you will have a native looking app on any OS you like. …
1
vote

C# When debugging I get “The requested operation requires elevation”, why? It was OK yesterday!

If it is just Visual Studio complaining (and not an underlying security issue of your code), you can set Visual Studio to …
0
votes

Re-Implement 3rd party TCP Java client

You could attempt to decompile the library. That should give you all of the low-level info that you need …
0
votes

Implementing a log viewer GUI with C# (or java)

I've implemented something similar using a …