Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: ConsoleColoredString ColorSubstring(int, ConsoleColor?, ConsoleColor?)

Declaration

public ConsoleColoredString ColorSubstring(
    int index,
    ConsoleColor? foreground,
    ConsoleColor? background
)

Summary

Colors a range of characters beginning at a specified index within the current string in the specified colors.

Parameters

intindex The index at which to start coloring.
ConsoleColor?foreground The foreground color to assign to the characters starting from the character at index, or null to use the console’s default foreground color.
ConsoleColor?background The background color to assign to the characters starting from the character at index, or null to use the console’s default background color.

Returns

The current string but with some of the colors changed.