/spikylib

Custom C# library for common expressions and custom functions.

Primary LanguageC#



    logo

    A tool that allows you to call C++ function names within C#.

This is just for University as we're using C# but we want to use C++ (we do not like C#). This also features some custom stuff that I've done within my University projects and that I probably will reuse in the future.


🏝️ Get Started 🏝️

Download the latest release and drop the spikylib.cs into your project.


🖨️ Example Usage 🖨️

using spikylib;

namespace CoolProject
{
    internal class Program
    {   
        static void Main(string[] args)
        {
            spikylib.spikylib slib = new spikylib.spikylib();
            slib.printf("hi!");

            string text = slib.getline();
            slib.printf(text);
        }
    }
}

🌵 Authors 🌵