コード例 #1
0
ファイル: FileSystem.cs プロジェクト: strangea/OpenHacknet
        public string TestEquals(object obj)
        {
            var fileSystem = obj as FileSystem;

            if (fileSystem == null)
            {
                throw new ArgumentNullException();
            }
            return(root.TestEqualsFolder(fileSystem.root));
        }