「自分用tips」の編集履歴(バックアップ)一覧はこちら

自分用tips」(2018/08/03 (金) 21:47:24) の最新版変更点

追加された行は緑色になります。

削除された行は赤色になります。

大体C# 書いた時点で覚えるのがカンペの目的 **なんかよくわすれるやつ n文字目から(後ろ省略で最後まで) str.Substring(n, length); **リストボックス再下段 listBox_main.TopIndex = listBox_main.Items.Count - 1; **ファイル書き出し using System.IO; using System.Text; using (StreamWriter file = new StreamWriter("log.txt", true, Encoding.GetEncoding("Shift_JIS"))) { file.WriteLine(""); } **ToString (12345).ToString("D8") = "00012345" (-123.456789).ToString("F4") = "-123.4568" (-1).ToString("x") = "ffffffff" (10).ToString("X4") = "000A" **C++の文字列 Unicodeとかwcharとか書くやつ 文字列リテラルと文字リテラル (C++) https://msdn.microsoft.com/ja-jp/library/69ze775t.aspx *c++のファイル C++でファイル読込み パターン別まとめ - Gobble up pudding https://fa11enprince.hatenablog.com/entry/2014/04/03/233500
大体C# 書いた時点で覚えるのがカンペの目的 **なんかよくわすれるやつ n文字目から(後ろ省略で最後まで) str.Substring(n, length); **リストボックス再下段 listBox_main.TopIndex = listBox_main.Items.Count - 1; **ファイル書き出し using System.IO; using System.Text; using (StreamWriter file = new StreamWriter("log.txt", true, Encoding.GetEncoding("Shift_JIS"))) { file.WriteLine(""); } **ToString (12345).ToString("D8") = "00012345" (-123.456789).ToString("F4") = "-123.4568" (-1).ToString("x") = "ffffffff" (10).ToString("X4") = "000A" **C++の文字列 Unicodeとかwcharとか書くやつ 文字列リテラルと文字リテラル (C++) https://msdn.microsoft.com/ja-jp/library/69ze775t.aspx **C++のファイル C++でファイル読込み パターン別まとめ - Gobble up pudding https://fa11enprince.hatenablog.com/entry/2014/04/03/233500

表示オプション

横に並べて表示:
変化行の前後のみ表示: