3
votes
Linux/C++ programmer to C#/Windows programmer
Since you already know how to program in C++, check out:
A Programmers Introduction to C# 2.0, by Eric Gunnerson and Nick Wienholt …
2
votes
How can I determine if a remote drive has enough space to write a file using C#?
Use WMI
using System.Management;
// Get all the network drives (drivetype=4)
SelectQuery query = new SelectQuery("select Name, VolumeName, FreeSpace from win32_logicaldisk where dr …
