mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 23:05:12 +00:00
Fix method ordering
This commit is contained in:
@@ -112,6 +112,17 @@ namespace SabreTools.Serialization.Wrappers
|
||||
|
||||
#region Extraction
|
||||
|
||||
/// <summary>
|
||||
/// Extract a cabinet set to an output directory, if possible
|
||||
/// </summary>
|
||||
/// <param name="filename">Filename for one cabinet in the set</param>
|
||||
/// <param name="outDir">Path to the output directory</param>
|
||||
/// <param name="includeDebug">True to include debug data, false otherwise</param>
|
||||
/// <returns>Indicates if all files were able to be extracted</returns>
|
||||
/// <remarks>Will extract all items found in the set</remarks>
|
||||
public static bool ExtractSet(string filename, string outDir, bool includeDebug)
|
||||
=> ExtractSet(stream: null, filename, outDir, includeDebug);
|
||||
|
||||
/// <summary>
|
||||
/// Extract a cabinet set to an output directory, if possible
|
||||
/// </summary>
|
||||
@@ -153,17 +164,6 @@ namespace SabreTools.Serialization.Wrappers
|
||||
return true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Extract a cabinet set to an output directory, if possible
|
||||
/// </summary>
|
||||
/// <param name="filename">Filename for one cabinet in the set</param>
|
||||
/// <param name="outDir">Path to the output directory</param>
|
||||
/// <param name="includeDebug">True to include debug data, false otherwise</param>
|
||||
/// <returns>Indicates if all files were able to be extracted</returns>
|
||||
/// <remarks>Will extract all items found in the set</remarks>
|
||||
public static bool ExtractSet(string filename, string outDir, bool includeDebug)
|
||||
=> ExtractSet(stream: null, filename, outDir, includeDebug);
|
||||
|
||||
/// <summary>
|
||||
/// Extract a cabinet to an output directory, if possible
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user