C# 中的 Console.MoveBufferArea() 方法
C# 中的 Console.MoveBufferArea() 方法的用途是将屏幕缓冲区中指定位置的源区域复制到指定位置的目标区域。
语法
语法如下 −
public static void MoveBufferArea (int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop);
此处:
- sourceLeft
源区域的最左侧列。
- sourceTop
源区域的最顶行。
- sourceWidth
源区域的列数。
- sourceHeight
源区域的行数。
- targetLeft
目标区域的最左侧列。
- targetTop
目标区域的最顶行。
示例
让我们看一个 C# 中实现 Console.MoveBufferArea() 方法的示例 −
using System; class Demo { public static void Main (string[] args) { Console.WriteLine("Demo text!"); Console.MoveBufferArea(0, 0, Console.BufferWidth, Console.BufferHeight, 20, 20); } }
输出
它会生成以下输出 −
广告