コード例 #1
0
 public FileFolder(string path, string text, bool isReadOnly, FileFolderType type)
 {
     Path        = path;
     Text        = text;
     Type        = type;
     IsReadOnly  = isReadOnly;
     Description = string.Empty;
 }
コード例 #2
0
 public FileFolder(string path, string text, string description, bool isReadOnly, FileFolderType type) : this(path, text, isReadOnly, type)
 {
     Description = description;
 }