// Copyright 2017-2018 Alexander Luzgarev namespace MatFileHandler.Tests { /// /// A method of writing IMatFile into a byte buffer. /// public abstract class MatFileWritingMethod { /// /// Write an IMatFile into a byte buffer. /// /// /// public abstract byte[] WriteMatFile(IMatFile matFile); } }