Skip to content
This repository has been archived by the owner on Oct 9, 2022. It is now read-only.

Latest commit

 

History

History
62 lines (55 loc) · 1.18 KB

README.md

File metadata and controls

62 lines (55 loc) · 1.18 KB

wbubblerdotnet

The Wbubbler C# package.
CodeFactor

How to install ?

To install use one of these following commands:

  • Package Manager Install-Package Wbubbler -Version 1.0.2
  • .Net CLI dotnet add package Wbubbler --version 1.0.2
  • PackageReference <PackageReference Include="Wbubbler" Version="1.0.2" />
  • F# interactive #r "nuget: Wbubbler, 1.0.2"
  • Or download the package from NuGet https://www.nuget.org/packages/Wbubbler/

How to use?

using Wbubbler;

namespace Wuse
{
   
    public class Class1
    {
        public void Main()
        {
            wbu.bbler();
        }
    }
}

Or in minified c#

using Wbubbler;
wbu.bbler();

Or in Visual Basic

Imports Wbubbler

Module Wuse

    Sub Main()
        wbu.bbler()
    End Sub

End Module

Or in F#

open Wbubbler
[<EntryPoint>]
let main argv =
    wbu.bbler()
    0

Copyright

© SilverDimond - 2021

© forevertoo - 2021

forevertoo made the original Node.JS Script and SilverDimond ported it.