diff --git a/SabreTools.Serialization/Wrappers/MicrosoftCabinet.cs b/SabreTools.Serialization/Wrappers/MicrosoftCabinet.cs
index d49f79c0..5e8a0cc6 100644
--- a/SabreTools.Serialization/Wrappers/MicrosoftCabinet.cs
+++ b/SabreTools.Serialization/Wrappers/MicrosoftCabinet.cs
@@ -112,6 +112,17 @@ namespace SabreTools.Serialization.Wrappers
#region Extraction
+ ///
+ /// Extract a cabinet set to an output directory, if possible
+ ///
+ /// Filename for one cabinet in the set
+ /// Path to the output directory
+ /// True to include debug data, false otherwise
+ /// Indicates if all files were able to be extracted
+ /// Will extract all items found in the set
+ public static bool ExtractSet(string filename, string outDir, bool includeDebug)
+ => ExtractSet(stream: null, filename, outDir, includeDebug);
+
///
/// Extract a cabinet set to an output directory, if possible
///
@@ -153,17 +164,6 @@ namespace SabreTools.Serialization.Wrappers
return true;
}
- ///
- /// Extract a cabinet set to an output directory, if possible
- ///
- /// Filename for one cabinet in the set
- /// Path to the output directory
- /// True to include debug data, false otherwise
- /// Indicates if all files were able to be extracted
- /// Will extract all items found in the set
- public static bool ExtractSet(string filename, string outDir, bool includeDebug)
- => ExtractSet(stream: null, filename, outDir, includeDebug);
-
///
/// Extract a cabinet to an output directory, if possible
///