-
Notifications
You must be signed in to change notification settings - Fork 36
M_CodeJam_IO_PathHelpers_IsWellFormedSimpleName
Andrew Koryavchenko edited this page Jul 4, 2017
·
2 revisions
Checks if the path ends with directory or volume separator chars.
Namespace: CodeJam.IO
Assembly: CodeJam (in CodeJam.dll) Version: 1.1.0.0 (1.1.0.0)
C#
public static bool IsWellFormedSimpleName(
string path
)
VB
Public Shared Function IsWellFormedSimpleName (
path As String
) As Boolean
F#
static member IsWellFormedSimpleName :
path : string -> bool
- path
- Type: System.String
The path.
Type: Booleantrue
if the path ends with separator char; otherwise, false
.