You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Path.Combine(string, string, string) is essentially implemented as Path.Combine(Path.Combine(string, string), string), resulting in the temporary string from combining the first two strings and then another string from combining that with the third string.
This commit adds a new overload of CommitNoCheck that does combining for three paths without the intermediate allocation/copy.
0 commit comments