C#

書式
public interface インターフェース名
public class クラス名:インターフェース名
使用例

using System;namespace ProjectTest{//インタ ...

C#

書式
@foreach (string 変数名 in 配列名)
使用例

@{ Layout = null; var target = new</p> }</body></html&g ...

C#

書式
double 変数名
char 変数名
使用例

using System;namespace TestApplication{ class Program { static void Main(st ...

C#

書式
リスト名.Where(条件式)
.Select(条件式);
使用例

using System;using System.Collections.Generic;using System.Linq;c ...

C#

書式
Convert.ToString(int型数値)
使用例

using System;namespace TestDemo{ class Program { static void Main(string[] ...

C#

書式
int 変数名A = (int)double型変数名B
使用例

using System;namespace TestDemo{ class Program { static void Main(strin ...

C#

書式
double 変数名A =int型変数名B
使用例

using System;namespace TestDemo{ class Program { static void Main(string[] ar ...

C#

説明
public static DateTime Now { get; }
コンピューター上の現在の日時を現地時刻で表した DateTime オブジェクトを取得
使用例

using System;usi ...

C#

説明
Average 数値のシーケンスの平均を計算します。
Sum 数値のシーケンスの合計を計算します。
C#コード

using System;using System.Collections.Gener ...

C#

構文
public static System.Collections.Generic.IEnumerable<TSource> Distinct<TSource> (this System.Colle ...

C#

説明
統合言語クエリ (LINQ) の入門的なドキュメントでは、ほとんどのクエリが、LINQ の宣言型クエリ構文を使用して記述されています。
標準クエリ演算子 (Where、Select、GroupBy、Join、Ma ...

C#

構文
public void Remove (object value);
特定のオブジェクトが IList 内にあるときに、最初に出現したものを削除します。
value IList から削除するオブジェクト。 ...

C#

構文
public void RemoveAt (int index);
指定したインデックスにある IList 項目を削除します。
index
削除する項目の 0 から始まるインデックス。
C ...

C#

構文
public static int Count<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);

C#

構文
public string ToString (string? format);
format で指定された、このインスタンスの値の文字列形式。
C#コード

using System;using S ...

C#

構文
public static int Parse (string s);
数値の文字列形式を、それと等価な 32 ビット符号付き整数に変換します。
C#コード

using System;using S ...

C#

構文
public static bool Contains<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, ...

C#

構文
List<T>.Count プロパティ
public int Count { get; }
List<T> に格納されている要素の数。
C#コード

using Sys ...