We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b18be6c commit eadad81Copy full SHA for eadad81
1 file changed
Plugins/SimpleFileBrowser/Scripts/FileBrowserHelpers.cs
@@ -9,8 +9,7 @@ public readonly struct FileSystemEntry
9
public readonly string Name;
10
public readonly string Extension;
11
public readonly FileAttributes Attributes;
12
-
13
- public bool IsDirectory { get { return ( Attributes & FileAttributes.Directory ) == FileAttributes.Directory; } }
+ public readonly bool IsDirectory { get { return ( Attributes & FileAttributes.Directory ) == FileAttributes.Directory; } }
14
15
public FileSystemEntry( string path, string name, string extension, bool isDirectory )
16
{
0 commit comments