Converts a virtual path to an application-relative path using the application virtual path that is in the HttpRuntime.AppDomainAppVirtualPath property.
The application-relative path representation of virtualPath.
If the virtual path for the application is "myapp" and the virtual path "/myApp/sub/default.asp" is passed into the VirtualPathUtility.ToAppRelative(string) method, the resulting application-relative path is "~/sub/default.aspx".
If virtualPath does not start with the current application path, the VirtualPathUtility.ToAppRelative(string) method returns the virtual path unchanged.
If virtualPath is the same as the application path, the root operator (the tilde [~]), is returned. For example, the current application virtual directory path can be accessed from the HttpRuntime.AppDomainAppVirtualPath property.