mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: All refactor in DiscImageChef.Core.
This commit is contained in:
@@ -46,7 +46,7 @@ namespace DiscImageChef.Core
|
||||
|
||||
public void Close()
|
||||
{
|
||||
if(dataFs != null) dataFs.Close();
|
||||
dataFs?.Close();
|
||||
}
|
||||
|
||||
public int Read(byte[] array, int offset, int count)
|
||||
@@ -92,7 +92,7 @@ namespace DiscImageChef.Core
|
||||
|
||||
public long Position
|
||||
{
|
||||
get { return dataFs.Position; }
|
||||
get => dataFs.Position;
|
||||
}
|
||||
|
||||
public static void WriteTo(string who, string outputPrefix, string outputSuffix, string what, byte[] data)
|
||||
|
||||
Reference in New Issue
Block a user