Skip to content

Instantly share code, notes, and snippets.

View haroldcris's full-sized avatar

Harold Cris haroldcris

View GitHub Profile
public class BotRequest
{
public string @object { get; set; }
public List<BotEntry> entry { get; set; }
}
public class BotEntry
{
public string id { get; set; }
public long time { get; set; }
@jjokela
jjokela / SingleInstance.cs
Created August 11, 2014 11:05
Winform single instance
using Microsoft.VisualBasic.ApplicationServices;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace WinFormsSingleInstance
{
static class Program
{