C Sharp (C#) - File IO
What will be the output of this C# code?
string baseDir = "D:\\Documents"; string subDir = "Projects"; string combinedPath = Path.Combine(baseDir, subDir); Console.WriteLine(combinedPath);
