BExplorer.Shell.Interop.ShlWapi.StrCmpLogicalW C# (CSharp) Method

StrCmpLogicalW() private method

private StrCmpLogicalW ( string psz1, string psz2 ) : int
psz1 string
psz2 string
return int
    public static extern int StrCmpLogicalW(string psz1, string psz2);

Usage Example

コード例 #1
0
ファイル: Helpers.cs プロジェクト: mwiemarc/BetterExplorer
 public int Compare(string x, string y)
 {
     return(ShlWapi.StrCmpLogicalW(x, y));
 }
All Usage Examples Of BExplorer.Shell.Interop.ShlWapi::StrCmpLogicalW