Given a path, I need to know if it is a fully qualified path (absolute path).
I know there is a method called System.IO.Path.IsPathRooted but this returns true for paths like:
- C:Documents
- /Documents
I have seen a method called IsPathFullyQualified which I am interested in, see here, but unfortunately, it seems it is not recognized under .NET Framework 4.5. So Is there any equivalent method for .NET 4.5?