Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@monakaice
monakaice / NpgsqlGetNotify.cs
Last active March 28, 2017 03:30
NpgsqlでNotifyを受信するサンプル
using System;
using Npgsql;
namespace ConsoleGetNotify
{
class Program
{
static void Main( string[] args )
{
Program program = new Program();
@monakaice
monakaice / TailFile.cs
Last active March 9, 2017 21:36
tail -fコマンドっぽいもの
using System;
using System.IO;
using System.Linq;
using System.Threading;
namespace TailFile
{
class Program
{
static void Main( string[] args )