Path.EndsInDirectorySeparator Method

Definition

Overloads

EndsInDirectorySeparator(ReadOnlySpan<Char>)

Returns a value that indicates whether the path, specified as a read-only span, ends in a directory separator.

EndsInDirectorySeparator(String)

Returns a value that indicates whether the specified path ends in a directory separator.

EndsInDirectorySeparator(ReadOnlySpan<Char>)

Source:
Path.cs
Source:
Path.cs
Source:
Path.cs

Returns a value that indicates whether the path, specified as a read-only span, ends in a directory separator.

public:
 static bool EndsInDirectorySeparator(ReadOnlySpan<char> path);
public static bool EndsInDirectorySeparator (ReadOnlySpan<char> path);
static member EndsInDirectorySeparator : ReadOnlySpan<char> -> bool
Public Shared Function EndsInDirectorySeparator (path As ReadOnlySpan(Of Char)) As Boolean

Parameters

path
ReadOnlySpan<Char>

The path to analyze.

Returns

true if the path ends in a directory separator; otherwise, false.

Applies to

EndsInDirectorySeparator(String)

Source:
Path.cs
Source:
Path.cs
Source:
Path.cs

Returns a value that indicates whether the specified path ends in a directory separator.

public:
 static bool EndsInDirectorySeparator(System::String ^ path);
public static bool EndsInDirectorySeparator (string path);
public static bool EndsInDirectorySeparator (string? path);
static member EndsInDirectorySeparator : string -> bool
Public Shared Function EndsInDirectorySeparator (path As String) As Boolean

Parameters

path
String

The path to analyze.

Returns

true if the path ends in a directory separator; otherwise, false.

Applies to