2015-03-01から1ヶ月間の記事一覧

言語Go

The Go Programming Language golang.jp - プログラミング言語Goの情報サイト Go の開発環境は IntelliJ IDEA + golang plugin がマトモだった - Qiita IntelliJ IDEAでgolang pluginを使いたいけどSDKの設定がうまく出来なくてウワーってなっている方へ - …

PingChecker

PingChecker using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net.NetworkInformation; namespace MyApp.Utility { /// <summary> /// Ping送信クラス(同期処理用) /// </summary> public class PingChecker { #region コ…

ソフトウェアアーキテクトが知るべき97のこと

ソフトウェアアーキテクトが知るべき97のこと

Androidアプリの開発入門テキストが完全無料公開中

950ページ超え! Androidアプリの開発入門テキストが完全無料公開中! | うえぶまなぶ

自作Logger

自作Logger using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Data; namespace MyApp.Utility { /// <summary> /// ログクラス /// </summary> public class Logger { #region 変数 //TODO 設定ファイルから読み込む /// <summary> //</summary>…

PingCheckerAsync

PingCheckerAsync using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net.NetworkInformation; namespace MyApp.Utility { /// <summary> /// Ping送信クラス(非同期処理用) /// </summary> public class PingCheckerAsync …

DecimalHelper

DecimalHelper using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MyApp.Utility { /// <summary> /// decimalヘルパークラス /// </summary> public class DecimalHelper { #region メソッド #region 数値のN捨N+1入を行…

StrginHelper

StrginHelper using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.VisualBasic; namespace MyApp.Utility { /// <summary> /// stringヘルパークラス /// </summary> public class StringHelper { /// <summary> /// 文字列のバイ</summary>…

Form初期処理

Form初期処理 using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Windows.Forms; namespace MyApp.FormApplication { static class Program { #region アプリケーションのメイン エントリ ポイント…

.net 例外処理

.net 例外処理 .NETの例外処理 Part.1 – とあるコンサルタントのつぶやき .NETの例外処理 Part.2 – とあるコンサルタントのつぶやき .NETの例外処理 Part. 3 – とあるコンサルタントのつぶやき .NET の例外処理 Part. 4 – とあるコンサルタントのつぶやき .N…

.net エラーチェック

.net エラーチェック エラーチェックの体系的な分類と実装パターン – とあるコンサルタントのつぶやき エラーチェックの体系的な分類方法 – とあるコンサルタントのつぶやき 単体入力エラーチェックの実装パターン – とあるコンサルタントのつぶやき

.net WindowsFormApp

.net WindowsFormApp マルチスレッド Windows フォームアプリケーションの開発 – とあるコンサルタントのつぶやき Part 1. Windows フォームのマルチスレッド処理の基礎 – とあるコンサルタントのつぶやき タスクスレッドの起動方法 – とあるコンサルタント…