Search Results

2
votes

How deterministic is floating point inaccuracy ?

Sorry, but I can't help thinking that everybody is missing the point. If the inaccuracy is significant to what you are doing then you should look for a different algorithm. You say …
2
votes

How to write a desktop app that would read/write data to a symbian phone connected to the PC

It's a couple of years since I worked on Symbian and haven't done much C# so I can't answer directly, but I always found that Eric Bustarret's site at …
2
votes

Is there a way to produce a binary diff on two byte arrays in c# .net?

Crikey! - that's all a bit complex, what's wrong with a run length encoding of the XOR of the two arrays - does the encoding and decoding in one pass and should be reasonably efficient in space as …