C#

書式
Console.ReadLine メソッドは標準入力ストリームから次の 1 行分の文字を読み取ります。
使用例

using System;namespace TestDemo{ class Program ...

C#

書式
var 変数名 = new Dictionary<TKey,TValue>();
キーと値のコレクションを表します。
TKey
ディクショナリ内のキーの型。
TValue ...

C#

書式
foreach(var 変数名 in Dictionary名 )
キー:変数名.key
値:変数名.value

使用例

sing System.Collections.Generic;c ...

C#

書式
foreach (var 変数名 in Dictionaryのインスタンス名.Keys)
使用例

using System;using System.Collections.Generic;class Ar ...

C#

書式
foreach (var 変数名 in Dictionaryのインスタンス名.Values)

使用例

using System;using System.Collections.Generic;clas ...

C#

書式
public bool ContainsKey (TKey key);
指定したキーを持つ要素が true に格納されている場合は Dictionary<TKey,TValue>。
それ以外の ...

C#

構文
public bool ContainsValue (TValue value);
指定した値を持つ要素が true に格納されている場合は Dictionary<TKey,TValue>。

C#

関数
public int Count { get; }
Dictionary<TKey,TValue> に格納されているキー/値ペアの数を取得します。
使用例

using System;us ...

C#

書式
1.小文字を大文字へ変換
文字列.ToUpper()
2.大文字を小文字へ変換
文字列.ToLower()

使用例

using System;using System.Colle ...

C#

書式
var 変数名 = new Dictionary<int, string>();
変数名.Add(キー,値)
変数名「キー」 =値
使用例

using System;using ...

C#

使用例

using System;namespace ProjectKm{ class TestInfo {//メソッドtestFuncA public string testFuncA(int x) { return x ; ...

C#

書式
var 変数名 = new Dictionary<int, string>();
変数名「キー」=更新値
使用例

using System;using System.Collection ...

C#

書式
var 変数名 = new Dictionary<int, string>();
変数名.Remove(キー);

使用例

using System;using System.Coll ...

C#

書式
var 変数名 = new Dictionary<int, string>();
変数名.Clear();

使用例

using System;using System.Collect ...

C#

書式
delegate 戻り値の型 名称 (引数)
使用例

using System;//デリゲートを定義 string型引数2つdelegate void cft(string strA, string str ...

C#

構文
関数名(データ型 変数名)
サンプルコード

using System;namespace ProjectDemo{ class Cft {    //関数Calcの定義 public void Calc(i ...

C#

書式
Button名 btnOp
リストボックス名 lstShow
ListBoxの”SelectionMode”プロパティを”MultiSimple”に設定しま ...

C#

書式
Math.Floor(数値) 小数第一位を切り捨
使用例

using System;class Sample{ static void Main() {//小数第1位で切り捨て double cftA = ...