Skip to content
This repository was archived by the owner on Nov 19, 2025. It is now read-only.

notfishvr33/Fish-Console-Lib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Fish-Console-Lib

Fish-Console-Lib is a library designed to enhance your console applications by providing advanced logging functionalities, including color support.

Features

  • Simple integration with existing console applications
  • Support for colored output

Installation

To use Fish-Console-Lib, add the library to your project through DLL in your project references.

Usage

Without Color

You can use Fish-Console-Lib without color support as shown below:

using Console = ConsoleLib.Console;

namespace ConsoleApp
{
    public class Logger
    {
        public void Write(string message)
        {
            Console.Write(message);
        }
    }
}

With Color

To add color support to your console output, you can specify a color for the message:

using Console = ConsoleLib.Console;
using System.Drawing; 

namespace ConsoleApp
{
    public class Logger
    {
        public void Write(string message)
        {
            Console.Write(message, Color.BlueViolet);
        }
    }
}

Acknowledgments

Some code and inspiration were taken from various sources. Special thanks to them.

About

This is a Console Lib for your Console app!

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages