public override Matrix2 Delegates()
        {
            var matrixCopy = Source;

            ADLLibrary.InvertMatrixByPtr(ref matrixCopy);

            return(matrixCopy);
        }
        public override Matrix2 Delegates()
        {
            var matrixCopy = Source;

            return(ADLLibrary.InvertMatrixByValue(matrixCopy));
        }