CSharp/Tips
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(CSharp,Tips);
*目次 [#xc7f12ea]
#contents
*参考情報 [#s7cedc95]
*プロジェクト [#d6dff830]
**作業ディレクトリ [#x9c04351]
-[[C# デバッグ構成のプロジェクト設定:http://msdn.microsof...
-VC++の場合<プロジェクトルート>が作業ディレクトリだったが...
*アノテーション [#g7be19b0]
**ValidationAttributeを使う [#dabf4b33]
-参照設定でSystem.ComponentModel.DataAnnotationsを参照す...
*デバッグ [#t65c6a8e]
**Assertを使う [#kab15c11]
Debug.Assert(condition, message)で使用可能。
#pre{{
Debug.Assert(x > 10, "xが10より大きくありません");
}}
終了行:
&tag(CSharp,Tips);
*目次 [#xc7f12ea]
#contents
*参考情報 [#s7cedc95]
*プロジェクト [#d6dff830]
**作業ディレクトリ [#x9c04351]
-[[C# デバッグ構成のプロジェクト設定:http://msdn.microsof...
-VC++の場合<プロジェクトルート>が作業ディレクトリだったが...
*アノテーション [#g7be19b0]
**ValidationAttributeを使う [#dabf4b33]
-参照設定でSystem.ComponentModel.DataAnnotationsを参照す...
*デバッグ [#t65c6a8e]
**Assertを使う [#kab15c11]
Debug.Assert(condition, message)で使用可能。
#pre{{
Debug.Assert(x > 10, "xが10より大きくありません");
}}
ページ名: