<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>来至駆現地</title>
<link>https://ameblo.jp/kishikugenchi/</link>
<atom:link href="https://rssblog.ameba.jp/kishikugenchi/rss20.xml" rel="self" type="application/rss+xml" />
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com" />
<description>ソフトウェア開発に関する技術メモです。</description>
<language>ja</language>
<item>
<title>単体テストツールでのprivateメソッドテスト方法</title>
<description>
<![CDATA[ リフレクション機能を使う。.NET Framework、Java共に。<br>検索を行えば十分な量のサンプルがある。<br>
]]>
</description>
<link>https://ameblo.jp/kishikugenchi/entry-10651481305.html</link>
<pubDate>Fri, 17 Sep 2010 23:06:17 +0900</pubDate>
</item>
<item>
<title>リソースの文字列を改行させる方法</title>
<description>
<![CDATA[ Shift + Enterで改行できる。<br><br>※[\n]では改行できない。<br>※HTMLに出力する場合は&lt;br/&gt;でよい。<br>
]]>
</description>
<link>https://ameblo.jp/kishikugenchi/entry-10614947090.html</link>
<pubDate>Mon, 09 Aug 2010 22:39:01 +0900</pubDate>
</item>
<item>
<title>NULLチェックを忘れやすいパターン</title>
<description>
<![CDATA[ ・検索後、もしくは対象データがある場合のみGridViewを<br>　表示するような場合に、あるボタンを押下してその<br>　GridViewのフィールドの値を参照して処理を行うような<br>　パターンは注意する。いきなり、<br>　string strVal = ((Label)gridAlbumList.Rows[0].Cells[0].FindControl("lblNo")).Text;<br>　と書くと例外が発生するので事前に、<br>if (GvAlbumList.Rows.Count &gt; 0)<br>{<br>            　　string strVal = ((Label)GvAlbumList.Rows[0].Cells[0].FindControl("lblNo")).Text;<br>}<br>　のようにチェックする必要がある。
]]>
</description>
<link>https://ameblo.jp/kishikugenchi/entry-10612733565.html</link>
<pubDate>Sat, 07 Aug 2010 16:10:52 +0900</pubDate>
</item>
<item>
<title>数値→文字列の変換における書式設定</title>
<description>
<![CDATA[ <a href="http://www.atmarkit.co.jp/fdotnet/dotnettips/116formatint/formatint.html" style="color: rgb(0, 0, 255);">(各パターンの使い方)</a><br style="color: rgb(0, 0, 255);"><a href="http://msdn.microsoft.com/ja-jp/library/dwhawy9k%28VS.80%29.aspx" style="color: rgb(0, 0, 255);">(数値書式指定文字列の説明)</a><br><br>整数部カンマ区切り、小数点第2位まで表示の場合<br>string strNum = string.Format("{0:N2}", 1234.567);<br>→"1,234.57"となる。<br>　<span style="color: rgb(255, 0, 0);">※小数点の最終桁は四捨五入によって丸められる。</span><br><br><br>これはASP.NETのGridViewなどのデータバインドコントロールでも<br>書式設定できる。<br><a href="http://msdn.microsoft.com/ja-jp/library/system.web.ui.webcontrols.boundfield%28v=VS.80%29.aspx" style="color: rgb(0, 0, 255);">(MSDNライブラリ)</a><br><br>各BoundFieldプロパティの[DataFormatString]に<br>{0:N2}<br>のように入力するとバインドされる値に対して書式変換が行われる。
]]>
</description>
<link>https://ameblo.jp/kishikugenchi/entry-10593897646.html</link>
<pubDate>Sun, 18 Jul 2010 11:57:18 +0900</pubDate>
</item>
<item>
<title>データカラムのNULLチェック</title>
<description>
<![CDATA[ 読み込んだ行の特定の列(カラム)に対して、NULLかどうかの判定をする方法。<br><br>DataRow.IsNull(判定したいカラム)<br>（参考）<a href="http://msdn.microsoft.com/ja-jp/library/system.data.datarow.isnull%28v=VS.80%29.aspx" target="_blank" style="color: rgb(0, 0, 255);">MSDNライブラリ DataRow.IsNullメソッド</a><br><br>※DataColumnオブジェクトのメソッドを呼び出すのではなく、<span style="color: rgb(255, 0, 0);">DataRowオブジェクトのメソッドを呼び出す</span>必要があるので注意。<span style="color: rgb(102, 102, 102);">（しばらく触っていないと忘れるのでメモ）</span><br>
]]>
</description>
<link>https://ameblo.jp/kishikugenchi/entry-10586761990.html</link>
<pubDate>Sat, 10 Jul 2010 14:53:43 +0900</pubDate>
</item>
<item>
<title>[浮動小数点値].TryParseの挙動</title>
<description>
<![CDATA[ ・[ .1 ]を評価<br>　→return：true、out：0.1<br><br>・[ 1. ]を評価<br>　→return：true、out：1<br><br>・[ . ]を評価<br>　→return：false、out：0（評価に失敗した場合は[ 0 ]）<br><br>・[+1]を評価<br>　→return：true、out：1<br><br>・[+0]を評価<br>　→return：true、out：0<br><br>・[-0]を評価<br>　→return：true、out：0<br><br>
]]>
</description>
<link>https://ameblo.jp/kishikugenchi/entry-10582520503.html</link>
<pubDate>Mon, 05 Jul 2010 21:34:29 +0900</pubDate>
</item>
<item>
<title>新規メンバー参入時の作業</title>
<description>
<![CDATA[ 以下の作業に必要な資料とチェックシートを準備しておくことで、<br>新規メンバー参入時の作業をルーチン化する。<br><span style="color: rgb(255, 0, 0);">※下記内容は逐次、追加/修正をして精度を上げること。</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">　（PDCAサイクルを忘れないこと）</span><br><br>○事前準備（PLが事前に実施）<br>　・各種申請（入館証の申請、ユーザのドメインへの登録など）<br>　・作業場所の確保<br>　・開発環境の構築（即時作業に着手してもらう必要がある場合）<br><br>○作業（新規メンバーに作業/資料熟読してもらう or PLが説明）<br>　・システム概要の説明<br>　・体制の説明（※問題が発生した場合に報告する人は誰か、なども）<br>　・セキュリティルールの説明<br>　・開発環境の構築<br>　・PJのルールを説明（コーディングルール、ネーミングルールなど）<br>　・職場のルールを説明（勤務時間、休憩、施設、喫煙など<br>　・直接指示を出すメンバーへの紹介<br>　　（<span style="color: rgb(255, 0, 0);">※円滑なコミュニケーションが取れるように配慮する。作業効率/精度に直結する</span>）<br>
]]>
</description>
<link>https://ameblo.jp/kishikugenchi/entry-10581536967.html</link>
<pubDate>Sun, 04 Jul 2010 20:16:19 +0900</pubDate>
</item>
</channel>
</rss>
