Skip to content
Prev Previous commit
Next Next commit
Move refs from System.Runtime.Extensions.cs to System.Runtime.cs
  • Loading branch information
carlossanlop committed Apr 22, 2020
commit 2086bcc64e36b48511f480ce0f10191814defd62
3 changes: 3 additions & 0 deletions src/libraries/System.Runtime/ref/System.Runtime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6920,10 +6920,13 @@ public static partial class Path
public static string Join(string? path1, string? path2, string? path3) { throw null; }
public static string Join(string? path1, string? path2, string? path3, string? path4) { throw null; }
public static string Join(params string?[] paths) { throw null; }
public static string RemoveRedundantSegments(string path) { throw null; }
public static string RemoveRedundantSegments(System.ReadOnlySpan<char> path) { throw null; }
public static System.ReadOnlySpan<char> TrimEndingDirectorySeparator(System.ReadOnlySpan<char> path) { throw null; }
public static string TrimEndingDirectorySeparator(string path) { throw null; }
public static bool TryJoin(System.ReadOnlySpan<char> path1, System.ReadOnlySpan<char> path2, System.ReadOnlySpan<char> path3, System.Span<char> destination, out int charsWritten) { throw null; }
public static bool TryJoin(System.ReadOnlySpan<char> path1, System.ReadOnlySpan<char> path2, System.Span<char> destination, out int charsWritten) { throw null; }
public static bool TryRemoveRedundantSegments(System.ReadOnlySpan<char> path, System.Span<char> destination, out int charsWritten) { throw null; }
}
public partial class PathTooLongException : System.IO.IOException
{
Expand Down