Are there any flaws for ALWAYS using UriKind.RelativeOrAbsolute (C # / Silverlight), besides some slight performance loss, instead of checking whether or not the path is correct and using the correct UriKind?
Uri nav = new Uri(path, UriKind.RelativeOrAbsolute);
Otherwise: using the code above, is there ever a time when it will be evaluated as a relative path, when should it be evaluated as an absolute path? Is one checked against the other? Is it possible that the path will satisfactorily be the relative path && the absolute path?
source share