Skip to content

VSoftTechnologies/VSoft.System.Console

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VSoft.System.Console

A Delphi port of the dotnet System.Console class.

Installation

DPM

Install VSoft.System.Console in the DPM IDE plugin, or

dpm install VSoft.System.Console .\yourproject.dproj

Manually

Clone the repository and add the System.Console.pas file to your project, or add the repo\src folder to your project's search path.

Usage

The Console class is a static class, so you use it just like in C#

uses
  System.Console;

begin
  Console.SetColors(TConsoleColor.Yellow, TConsoleColor.DarkBlue);
  Console.Clear;
  Console.SetCursorPosition(20,0);
  Console.WriteLine('abcdef');
  Console.ReadLine();
end;

About

Delphi implementation of dotnet's System.Console

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages