Skip to content

Instantly share code, notes, and snippets.

View dominiqueplante's full-sized avatar

Dominique Plante dominiqueplante

  • McKesson / RelayHealth
  • Martinez, CA / Emeryville, CA
View GitHub Profile
@dominiqueplante
dominiqueplante / program.cs
Created June 29, 2020 22:39
connect to redis from .NET 3.1 console app
namespace ConsoleApp1
{
using System;
using ServiceStack.Redis;
using ServiceStack.Text;
public class Todo
{
public long Id { get; set; }
public string Content { get; set; }