-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ebb330a
commit f8ffd40
Showing
28 changed files
with
87 additions
and
168 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-124 KB
.vs/Senjyouhara.Main/FileContentIndex/1c39f383-8bfc-4ea5-b11a-2580c9f374d1.vsidx
Binary file not shown.
Binary file removed
BIN
-134 KB
.vs/Senjyouhara.Main/FileContentIndex/5606c748-9ad2-4665-aa8a-7fb05dafb01c.vsidx
Binary file not shown.
Binary file added
BIN
+124 KB
.vs/Senjyouhara.Main/FileContentIndex/60accb1c-78fa-48f7-aeec-84fd9eaf9322.vsidx
Binary file not shown.
Binary file removed
BIN
-118 KB
.vs/Senjyouhara.Main/FileContentIndex/9c4f2571-1253-4d5e-bcdb-a3595f6f98ef.vsidx
Binary file not shown.
Binary file added
BIN
+124 KB
.vs/Senjyouhara.Main/FileContentIndex/add270f1-6d4b-4c76-ad1f-0b7f32b0dafc.vsidx
Binary file not shown.
Binary file added
BIN
+135 KB
.vs/Senjyouhara.Main/FileContentIndex/b9495baa-ac62-448b-858f-4715dd48405a.vsidx
Binary file not shown.
Binary file added
BIN
+117 KB
.vs/Senjyouhara.Main/FileContentIndex/e87d06e9-6b0e-437c-9d76-8e18ba02af33.vsidx
Binary file not shown.
Binary file removed
BIN
-124 KB
.vs/Senjyouhara.Main/FileContentIndex/fc2cc6ce-9b3b-4eb7-a913-b594dc741d70.vsidx
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Runtime.InteropServices; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Senjyouhara.Main.Comparer | ||
{ | ||
|
||
public class FileComparer : IComparer<string> | ||
{ | ||
//引入API文件:Shlwapi.dlL | ||
[DllImport("shlwapi.dll", CharSet = CharSet.Unicode, ExactSpelling = true)] | ||
static extern int StrCmpLogicalW(String x, String y); | ||
public int Compare(string str_1_ForCompare, string str_2_ForCompare) | ||
{ | ||
return StrCmpLogicalW(str_1_ForCompare, str_2_ForCompare); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.