i can code....sorta
i can code....sorta

Reputation: 31

How to install packages and libraries for c # on repl.it

so i am using this online website called https://repl.it/ , so I am actually learning C# in it so i wanted to try some packages and libraries but I don't know how to access them. So i was wondering if anyone could help.I have tried watching some you tube videos but I couldn't find any so please help me.

Upvotes: 3

Views: 1541

Answers (2)

Paul Wheeler
Paul Wheeler

Reputation: 20162

For new C# repls that use .Net Core (as opposed to .Net Framework via Mono), this is quite straightforward.

  1. Create a C# Repl

New Repl Dialog

  1. Select the Packages Tab (icon looks like an isometric cube)

Packages Tab

  1. Search for the package you want and click the + button

Add a Package

  1. Alternatively, use the dotnet command line in the shell

dotnet command line

Upvotes: 3

Leandro Toloza
Leandro Toloza

Reputation: 2020

Repl.it currently doesn't support packages for C#. Only for Python and Js

Upvotes: -1

Related Questions