.NET Format String 101
posted by JustinF(0) 5 years, 11 months ago 0
Just like several of the commenters in the linked blog, I always spend what seems an eternity digging through the MSDN docs trying to find the string format information. This post has several good links.
Reply
Quick Tip: Use System.IO.Path.Combine instead of string concatenation
posted by JustinF(0) 4 years, 11 months ago 0
Yep, System.IO.Path is the way to go. I see application errors just waiting to happen whenever I see paths being built in our applications without using the Combine() method.