Beispiel #1
0
 /// <summary>
 /// Changes the definition of a color-pair number 0.
 /// </summary>
 /// <remarks>
 /// The screen is refreshed and all occurences of color-pair
 /// number 0 are changed to the new definition. The value of
 /// <paramref name="fg"/> and <paramref name="bg"/> must
 /// be between 0 and <see cref="Colors"/>.
 /// </remarks>
 /// <param name="fg">Foreground color number.</param>
 /// <param name="bg">Background color number.</param>
 public static void AssumeDefaultColors(int fg, int bg)
 {
     CursesMethods.assume_default_colors(fg, bg);
 }