Welcome to the DiscordSharp dev branch!
A C# API for Discord.
DiscordSharp is now available on NuGet! It is marked as pre-release package at the moment. At your package manager console, type
Install-Package DiscordSharp -Pre
and it will install the additional dependencies (Newtonsoft.Json & websocket-sharp)
Discord is what I like to call an "event-based" client. In other words, you get your instance of your client and hook up to its various events: either by lambda or by delegating to external voids. A simple example is as follows..
DiscordClient client = new DiscordClient();
client.ClientPrivateInformation.Email = "email";
client.ClientPrivateInformation.Password = "pass";
client.Connected += (sender, e) =>
{
Console.WriteLine($"Connected! User: {e.User.Username}");
};
client.SendLoginRequest();
Thread t = new Thread(client.Connect);
t.Start();
This will get you logged in and print out a login notification to the console with the username you've logged in as.
We're all one big happy related family.
Discord.Net, another great C# library - https://github.com/RogueException/Discord.Net
Discord4J, a Java library - https://github.com/austinv11/Discord4J
JDiscord, another Java library - https://github.com/NotGGhost/jDiscord
JDA, anotha one - https://github.com/DV8FromTheWorld/JDA
Javacord, anotha one - https://github.com/BtoBastian/Javacord
discord.io, a Node.js library which I referenced a lot - https://github.com/izy521/discord.io
discord.js, an alternate Node.js library - https://github.com/discord-js/discord.js
discordie, another Node.js library - https://github.com/qeled/discordie
DiscordPHP, a PHP library - https://github.com/teamreflex/DiscordPHP
discord-hypertext, the alternate php library https://github.com/Cleanse/discord-php
discordrb, a Ruby library - https://github.com/meew0/discordrb
discord.py, a Python library - https://github.com/Rapptz/discord.py
discord-akka, a Scala library - https://github.com/eaceaser/discord-akka
go-discord, a Go library (Google Go) - https://github.com/gdraynz/go-discord
discordgo, alternate Google Go library - https://github.com/bwmarrin/discordgo