/// <inheritdoc cref="IDrawingContext.Release(Color,Color)"/> public void Release(Color backgroundColor, Color foregroundColor) { currentBackground = backgroundColor; currentForeground = foregroundColor; background.Release(backgroundColor); foreground.Release(foregroundColor); chars.Release('\0'); }
internal void Release(Color backgroundColor, Color foregroundColor) { background.Release(backgroundColor); foreground.Release(foregroundColor); chars.Release('\0'); }
/// <inheritdoc cref="IDrawingContext.Release(Color,Color,char)"/> public void Release(Color backgroundColor, Color foregroundColor, char @char) { Release(backgroundColor, foregroundColor); chars.Release(@char); }