| FilePath Conversion (FilePath to String) |
This is used to handle an implicit conversion from a
FilePath object to a string
Namespace: SandcastleBuilder.UtilsAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public static implicit operator string (
FilePath filePath
)
Public Shared Widening Operator CType (
filePath As FilePath
) As String
static implicit operator String^ (
FilePath^ filePath
)
F# does not support the declaration of new casting operators.
Parameters
- filePath
- Type: SandcastleBuilder.UtilsFilePath
The FilePath to convert.
Return Value
Type:
StringThe file path as a relative or absolute path string based on its current settings
Examples FilePath filePath = new FilePath(@"%APPDATA%\TestApp\App.config");
string pathString = filePath;
Dim filePath As New FilePath("%APPDATA%\TestApp\App.config")
Dim pathString As String = filePath
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also