2012-04-01から1ヶ月間の記事一覧

クライアントからアップロード

/// <summary> /// ファイルをアップロードする /// </summary> class FileUploader { string _uploadUrl; string _postInputName; Encoding _encode; CookieContainer _cookies; /// <summary> /// 文字コード、アップロードのアクションを指定してImageUploaderのインスタンスを初期化</summary>…

Nullのときは値をいれてNullでないときはそのまま返す拡張メソッド

C#

なんとなく思いついたというか欲しかった。ナイの? 「IsNullOrEmptyはゆとり」と同レベル static public T IfNullUnderstudy<T>( this T source, T understudy ) where T : class { return source == null ? understudy : source; } Nullオブジェクトは大仕掛</t>…

WEBでシンタックスハイライト

スーパープレ記法的なgoogle-code-prettify http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-how-to-add-syntax-highlighting-to-any-project/jQuery Syntax Highlighter http://steamdev.com/snippet/