Category Archives: C#

A Better Way to Remove a Trailing Slash from a Path

How many times have you written this to trim a trailing slash from a path: if (myPath.EndsWith("\\"))   /* or "/" in the case of a URI  */   myPath = myPath.Substring(0, myPath.Length-1); Next time, try this: myPath = myPath.TrimEnd(new char[]{'\\', '/'}); In addition … Continue reading

Posted in C# | Comments Off