SkillAgentSearch skills...

DevRantDotNet

A C# Wrapper for the devRant public API

Install / Use

/learn @redrails/DevRantDotNet
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Build status NuGet

Unofficial C# Wrapper for the devRant public API.

devRantDotNet

This is a library written in C#.NET for access to the devRant API. It aims to provide serialization on the components received so you can easily make use of the library to build applications and other code.

Prerequisites

  • .NET Framework 4+

Installation

The easiest way to install devRantDotNet is using nuget, run the following command in the Package Manager Console

    PM> Install-Package redrails.devRantDotNet

If you want to run from source then you can clone this repository and add it as a reference in your project.

Getting started

using devRantDotNet;

namespace MyProject
{
	class MyProgram
	{
		public static void Main(string[] args)
		{
			using(var dr = new devRant())
			{
				Console.WriteLine(dr.GetUserIdAsync("px06").Result);
				Console.WriteLine(dr.GetRantsAsync().Result);
				...
			}
		}
	}
}

Most methods are available in this library with some ongoing work on improving it. All methods are Async.

Usage and Documentation

Please see the wiki: https://github.com/redrails/devRantDotNet/wiki/Documentation

Contributing

If you would like to contribute then please submit pull-requests.

Licensing

Feel free to use the library as it is open-source but please do give credit when using it.

View on GitHub
GitHub Stars6
CategoryDevelopment
Updated4mo ago
Forks2

Languages

C#

Security Score

72/100

Audited on Nov 6, 2025

No findings