use type keyword for String

This commit is contained in:
2026-04-07 15:22:10 +02:00
parent 52619fd236
commit 7b0929b622
18 changed files with 65 additions and 65 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ public class WebRootFileSystem : PhysicalFileSystem, IWebRootFileSystem
public WebRootFileSystem(string root, string publicPathPrefix) : base(root)
{
PublicPathPrefix = (publicPathPrefix ?? String.Empty).EnsureEndsWith('/');
PublicPathPrefix = (publicPathPrefix ?? string.Empty).EnsureEndsWith('/');
}