Skip to content

Instantly share code, notes, and snippets.

View kazuk's full-sized avatar
👺
悪い子はいねーがー

kazuhiko kikuchi kazuk

👺
悪い子はいねーがー
View GitHub Profile
@kazuk
kazuk / Program.cs
Created October 13, 2012 12:39
SEND+MORE=MONEY
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SendMoreMoney
{
class Program
{
static void Main(string[] args)
@kazuk
kazuk / Program.cs
Created October 13, 2012 12:28
SEND+MORE=MONEY
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SendMoreMoney
{
class Program
{
static void Main(string[] args)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.Reflection.Emit;
using System.IO;
namespace Oosaki.Msil
{
@kazuk
kazuk / HttpApplicationExtentions.tt
Created April 14, 2012 02:18
ASP.NET HttpApplication からすべての Event key object を取得する
<#@ template debug="false" hostspecific="false" language="C#" #>
<#@ assembly name="System.Core" #>
<#@ assembly name="System.Web" #>
<#@ output extension="EventKeys.cs" #>
<#@ import namespace="System.Web" #>
<#@ import namespace="System.Reflection" #>
<#@ import namespace="System.Linq" #>
using System;
using System.Collections.Generic;
using System.Linq;
@kazuk
kazuk / HomeController.cs
Created April 14, 2012 00:29
create new gist を試してみるよ
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace SampleAppBase.Controllers
{
public class HomeController : Controller
{