コード例 #1
0
ファイル: Directory.cs プロジェクト: ryonoha/DOSBox.cs
 private static bool HasAnotherParent(FileSystemItem item)
 {
     return(item.Parent != null);
 }
コード例 #2
0
ファイル: Directory.cs プロジェクト: ryonoha/DOSBox.cs
 private static bool RemoveParent(FileSystemItem item)
 {
     return(item.Parent.content.Remove(item));
 }