Click or drag to resize
Sandcastle Help File BuilderFilePath  Conversion (FilePath to String)
This is used to handle an implicit conversion from a FilePath object to a string

Namespace: SandcastleBuilder.Utils
Assembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax
public static implicit operator string (
	FilePath filePath
)

Parameters

filePath
Type: SandcastleBuilder.UtilsFilePath
The FilePath to convert.

Return Value

Type: String
The file path as a relative or absolute path string based on its current settings
Examples
FilePath filePath = new FilePath(@"%APPDATA%\TestApp\App.config");

// The FilePath object is automatically converted to a string
// representing the expanded, fully qualified path.
string pathString = filePath;
See Also