<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/devindex/">
    <title>devindex @ ウィキ</title>
    <link>http://w.atwiki.jp/devindex/</link>
    <atom:link href="https://w.atwiki.jp/devindex/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>devindex @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2011-05-09T14:40:23+09:00</dc:date>
    <utime>1304919623</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/devindex/pages/19.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/devindex/pages/18.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/devindex/pages/17.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/devindex/pages/16.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/devindex/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/devindex/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/devindex/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/devindex/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/devindex/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/devindex/pages/10.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/devindex/pages/19.html">
    <title>配列</title>
    <link>https://w.atwiki.jp/devindex/pages/19.html</link>
    <description>
          </description>
    <dc:date>2011-05-09T14:40:23+09:00</dc:date>
    <utime>1304919623</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/devindex/pages/18.html">
    <title>入出力</title>
    <link>https://w.atwiki.jp/devindex/pages/18.html</link>
    <description>
          </description>
    <dc:date>2011-05-02T19:18:48+09:00</dc:date>
    <utime>1304331528</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/devindex/pages/17.html">
    <title>オブジェクト指向</title>
    <link>https://w.atwiki.jp/devindex/pages/17.html</link>
    <description>
      #contents()

----

*コンストラクタ
**引数なし
public コンストラクタ(){
}
**引数あり
public コンストラクタ(引数){
}
**補足
並べることでオーバーロード可能

----

*デストラクタ
~コンストラクタ(){
}

----

*ステップアップ
**try、catch、finally、using
例)[[ファイル]]の読み込み
#region(close, 第1段階……tryなし)
#highlight(linenumber,cs){{
String str;

StreamReader FILE = new StreamReader(ファイルパス);
while((str = FILE.ReadLine()) != null){
	System.Console.WriteLine(str);//表示
}
}}
#endregion

#region(close, 第2段階……try、catch、finallyあり)
#highlight(linenumber,cs){{
String str;

try{
	StreamReader FILE = new StreamReader(ファイルパス);
	while((str = FILE.ReadLine()) != null){
		System.Console.WriteLine(str);//表示
	}
}
catch(System.IO.FileNotFoundException ex ){
	System.Console.WriteLine(ex.Message);
	System.Console.Read();//エンターで終了
	return -1;
}
finally{
	//後処理
	if (FILE != null)
	{
		FILE.Close();
	}
}
}}
#endregion

#region(close, 第3段階……try、catch、usingあり)
#highlight(linenumber,cs){{
String str;

try{
	using(StreamReader FILE =    </description>
    <dc:date>2011-04-22T18:15:51+09:00</dc:date>
    <utime>1303463751</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/devindex/pages/16.html">
    <title>ファイル</title>
    <link>https://w.atwiki.jp/devindex/pages/16.html</link>
    <description>
      #contents()

----

*取得

----

*加工

----

*参考
http://homepage3.nifty.com/midori_no_bike/CS/filesys.html    </description>
    <dc:date>2011-04-20T17:26:50+09:00</dc:date>
    <utime>1303288010</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/devindex/pages/15.html">
    <title>文字列</title>
    <link>https://w.atwiki.jp/devindex/pages/15.html</link>
    <description>
      #contents()

----

*調査
**指定文字の出現位置(IndexOf)
int = 文字列.IndexOf(指定文字列)
int &gt;  0 ：出現位置
int = -1 ：存在しない

**指定文字の出現位置(最後)(LastIndexOf)
int = 文字列.LastIndexOf(指定文字列)
int &gt;  0 ：出現位置(先頭から)
int = -1 ：存在しない

**文字列の比較(CompareTo)
int = 文字列A.CompareTo(文字列B)
文字列A = 文字列B ：同一

----

*加工
**文字列の挿入(Insert)
string = 文字列.Insert(位置, 挿入文字列);

**パス文字列の結合(Combine)
string = Path.Combine(文字列A, 文字列B)

----

*参考
http://www.labasp.net/CsharpNote/mTips/Moji/index.html
http://jeanne.wankuma.com/tips/csharp/string/compare.html(CompareTo)    </description>
    <dc:date>2011-04-22T18:19:22+09:00</dc:date>
    <utime>1303463962</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/devindex/pages/14.html">
    <title>パス</title>
    <link>https://w.atwiki.jp/devindex/pages/14.html</link>
    <description>
      #contents()


*取得
**指定パスのディレクトリ情報
Path.GetDirectoryName(パス)

**自分自身の実行ファイル名(パス付き)
Environment.GetCommandLineArgs()
string file_name = Environment.GetCommandLineArgs()[0] ;  // 例) &quot;C:\BIN\test.exe&quot;


*加工
**パス文字列の結合
Path.Combine()


*参考
http://www.atmarkit.co.jp/fdotnet/dotnettips/164getfilename/getfilename.html
http://msdn.microsoft.com/ja-jp/library/system.io.path_methods(v=VS.80).aspx
http://homepage3.nifty.com/midori_no_bike/CS/filesys.html    </description>
    <dc:date>2011-04-20T17:14:41+09:00</dc:date>
    <utime>1303287281</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/devindex/pages/13.html">
    <title>bat</title>
    <link>https://w.atwiki.jp/devindex/pages/13.html</link>
    <description>
      #contents()

*挙動
**コピー
copy


*＠＠＠    </description>
    <dc:date>2011-04-20T17:09:26+09:00</dc:date>
    <utime>1303286966</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/devindex/pages/12.html">
    <title>プラグイン/人気商品一覧</title>
    <link>https://w.atwiki.jp/devindex/pages/12.html</link>
    <description>
      * 人気商品一覧
@wikiのwikiモードでは
 #price_list(カテゴリ名)
と入力することで、あるカテゴリの売れ筋商品のリストを表示することができます。

カテゴリには以下のキーワードがご利用できます。
|キーワード|表示される内容|
|ps3|PlayStation3|
|ps2|PlayStation3|
|psp|PSP|
|wii|Wii|
|xbox|XBOX|
|nds|Nintendo DS|
|desctop-pc|デスクトップパソコン|
|note-pc|ノートパソコン|
|mp3player|デジタルオーディオプレイヤー|
|kaden|家電|
|aircon|エアコン|
|camera|カメラ|
|game-toy|ゲーム・おもちゃ全般|
|all|指定無し|

空白の場合はランダムな商品が表示されます。

※このプラグインは[[価格比較サイト@PRICE&gt;&gt;http://atprice.jp]]のデータを利用しています。

-----

たとえば、
 #price_list(game-toy)
と入力すると以下のように表示されます。

ゲーム・おもちゃ全般の売れ筋商品
#price_list(game-toy)

ノートパソコンの売れ筋商品
#price_list(game-toy)

人気商品リスト
#price_list()
    </description>
    <dc:date>2011-04-20T17:05:23+09:00</dc:date>
    <utime>1303286723</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/devindex/pages/11.html">
    <title>プラグイン/コメント</title>
    <link>https://w.atwiki.jp/devindex/pages/11.html</link>
    <description>
      * コメントプラグイン
@wikiのwikiモードでは
 #comment()
と入力することでコメントフォームを簡単に作成することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_60_ja.html


-----
たとえば、#comment() と入力すると以下のように表示されます。

#comment    </description>
    <dc:date>2011-04-20T17:05:23+09:00</dc:date>
    <utime>1303286723</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/devindex/pages/10.html">
    <title>プラグイン/関連ブログ</title>
    <link>https://w.atwiki.jp/devindex/pages/10.html</link>
    <description>
      * 関連ブログ
@wikiのwikiモードでは
 #bf(興味のある単語)
と入力することで、あるキーワードに関連するブログ一覧を表示することができます

詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_161_ja.html

-----


たとえば、#bf(ゲーム)と入力すると以下のように表示されます。


#bf(ゲーム)
    </description>
    <dc:date>2011-04-20T17:05:23+09:00</dc:date>
    <utime>1303286723</utime>
  </item>
  </rdf:RDF>
