Search Results

0
votes

How do I check for nulls in an ‘==’ operator overload without infinite recursion?

@The Digital Gabeg: If you have many null objects then exception handling may be a big overhead. …
0
votes

How do I upload a file to an SFTP server in C# / .NET?

Maybe you can script/control winscp? …
0
votes

Double and floats in C#

They should be the same. Floating point numbers are based on IEEE_754 standard. …
2
votes

Visual C# GUI stops responding when process.WaitForExit(); is used

Your waiting for the process on the only thread of your application that is also responsible for handling all GUI events. If you want to wait for some event (like some other process to finish) and …