public static TriStateMatrix Apply(this Pattern pattern, TriStateMatrix matrix, ErrorCorrectionLevel errorlevel) { return(matrix.Xor(pattern, errorlevel)); }
public static TriStateMatrix Apply(this Pattern pattern, TriStateMatrix matrix, ErrorCorrectionLevel errorLevel) => matrix.Xor(pattern, errorLevel);
/// <summary> /// Applies the specified pattern. /// </summary> /// <param name="pattern">The pattern.</param> /// <param name="matrix">The matrix.</param> /// <param name="errorlevel">The errorlevel.</param> /// <returns></returns> /// <remarks></remarks> public static TriStateMatrix Apply(this Pattern pattern, TriStateMatrix matrix, ErrorCorrectionLevel errorlevel) { return matrix.Xor(pattern, errorlevel); }