Agile Samurai Dojo Gatheringにて角谷さんの「アジャイルソフトウェアの12の原則」の訳に対する熱い思いを受けた。
俺もやる!君もやれ、Fork me!!!
Our highest priority is to satisfy the customer through early and continuous delivery of valuable software.
顧客満足を最優先し、価値のあるソフトウェアを早く継続的に提供します。
| public class HogeHogeSession { | |
| public static SessionWrapper<int> searchCondition = new SessionWrapper<int>( | |
| "HogeHoge"); | |
| } |
| public abstract class PageBase : System.Web.UI.Page | |
| { | |
| /// <summary> | |
| /// イベント呼び出しのログ出力用メソッドです | |
| /// </summary> | |
| /// <param name="PageName">ページ名(日本語)</param> | |
| /// <param name="EventName">イベント名(日本語)</param> | |
| /// <param name="memo">その他メモ(あれば)</param> | |
| /// <param name="queryNames">クエリパラメータ名(あれば)</param> | |
| protected void EventTraceLog(string PageName, string EventName, string memo = "", string[] queryNames = null) |
| public class DTOBase | |
| { | |
| public override string ToString() | |
| { | |
| var values = new List<string>(); | |
| foreach (var field in GetType().GetFields()) | |
| { | |
| values.Add(string.Format("{0}:{1}", field.Name, field.GetValue(this))); | |
| } |
| //全角カナ32文字 | |
| Regex.IsMatch(val, "^[ァ-ー]{0,32}$"); | |
| //郵便番号 | |
| Regex.IsMatch(val, "^[0-9]{3}-[0-9]{4}$"); |
| Write-Host 'Hello World!' |
| Download Chiraw, Scarecrows And Lullabies mp3 music free. unlimited access, high speed downloads | |
| Download Chiraw, Scarecrows And Lullabies mp3 music | |
| Highspeed download torrent Download Chiraw, Scarecrows And Lullabies mp3 music | |
| Check our website for torrent links! | |
| Download Chiraw, Scarecrows And Lullabies mp3 music | |
Agile Samurai Dojo Gatheringにて角谷さんの「アジャイルソフトウェアの12の原則」の訳に対する熱い思いを受けた。
俺もやる!君もやれ、Fork me!!!
顧客満足を最優先し、価値のあるソフトウェアを早く継続的に提供します。
| public class LimitedString : IEnumerable<char> | |
| { | |
| protected string Val { get; set; } | |
| public LimitedString(string value, int min = 0, int max = int.MaxValue) | |
| { | |
| if (value == null) | |
| { | |
| throw new ArgumentNullException("value"); | |
| } |
| [TestClass] | |
| public class SuperLimitedStringTest | |
| { | |
| [TestMethod] | |
| public void hogehgoe() | |
| { | |
| new SuperLimitedString("a"); | |
| new SuperLimitedString("ab", min: 2); | |
| new SuperLimitedString("ab", max: 2); | |
| new SuperLimitedString("ab", min: 2, max:2); |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Runtime.Serialization; | |
| using System.Text; | |
| using System.Web; | |
| namespace Hoge | |
| { |