mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-01 00:09:14 +00:00
d47bb1d297
With the new version of Visual Studio bringing C# 12, we can revise our logic for better readability as well as use new methods/APIs introduced in the .NET 8.0 BCL.
8 lines
241 B
C#
8 lines
241 B
C#
namespace PKHeX.Core;
|
|
|
|
public sealed class SaveHandlerSplitResult(byte[] Data, byte[] Header, byte[] Footer)
|
|
{
|
|
public readonly byte[] Header = Header;
|
|
public readonly byte[] Footer = Footer;
|
|
public readonly byte[] Data = Data;
|
|
}
|