C#

 Computer >> コンピューター >  >> プログラミング >> C#
  1. C#のQueue.Synchronized()メソッド

    C#のQueue.Synchronized()メソッドは、元のキューをラップし、スレッドセーフな新しいキューを返すために使用されます。 構文 構文は次のとおりです- public static System.Collections.Queue Synchronized (System.Collections.Queue queue); 上記のパラメータキューは、同期するキューです。 例 例を見てみましょう- using System; using System.Collections; public class Demo {    public static void

  2. C#のStack.CopyTo()メソッド

    C#のStack.CopyTo()メソッドは、指定された配列インデックスから始まる既存の1次元配列にスタックをコピーするために使用されます。 構文 構文は次のとおりです- public virtual void CopyTo (Array arr, int index); 上記では、パラメータarrはスタックからコピーされた要素の宛先である1次元配列であり、インデックスはコピーが開始されるインデックスです。 例 例を見てみましょう- using System; using System.Collections; public class Demo {    publi

  3. C#のQueue.ToArrayメソッド

    C#のQueue.ToArray()メソッドは、Queue要素を新しい配列にコピーします。 構文 構文は次のとおりです- public virtual object[] ToArray (); 例 例を見てみましょう- using System; using System.Collections.Generic; public class Demo {    public static void Main(){       Queue<int> queue = new Queue<int>();   &nb

  4. C#のSortedDictionary.Countプロパティ

    C#のSortedDictionary.Countプロパティは、SortedDictionary に含まれるキーと値のペアの数を取得するために使用されます。 構文 構文は次のとおりです- public int Count { get; } 例 例を見てみましょう- using System; using System.Collections; using System.Collections.Generic; public class Demo {    public static void Main(){       SortedDict

  5. C#のSortedDictionary.Item[]プロパティ

    C#のSortedDictionary.Item []プロパティは、指定されたキーに関連付けられた値を取得または設定するために使用されます。 構文 構文は次のとおりです- public TValue this[TKey k] { get; set; } 上記の値kは、取得または設定する値のキーです。 例 例を見てみましょう- using System; using System.Collections; using System.Collections.Generic; public class Demo {    public static void Main(){

  6. C#のSingle.ToStringメソッド

    C#のSingle.ToString()メソッドは、このインスタンスの数値を同等の文字列表現に変換するために使用されます。 構文 構文は次のとおりです- public override string ToString (); 例 例を見てみましょう- using System; public class Demo {    public static void Main(){       float f1 = 10.0f/0.0f;       float f2 = -3.0f;     &

  7. C#のDouble.GetHashCode()メソッド

    C#のDouble.GetHashCode()メソッドは、このインスタンスのハッシュコードを返すために使用されます。 構文 構文は次のとおりです- public override int GetHashCode (); 例 例を見てみましょう- using System; public class Demo {    public static void Main(){       double d1 = 150d;       object ob1 = 1/2;       Co

  8. C#のBitConverter.ToInt16()メソッド

    C#のBitConverter.ToInt16()メソッドは、バイト配列の指定された位置にある2バイトから変換された16ビットの符号付き整数を返すために使用されます。 構文 構文は次のとおりです- public static short ToInt16 (byte[] val, int begnIndex); 上記では、valはバイト配列ですが、begnIndexはval内の開始位置です。 例 例を見てみましょう- using System; public class Demo {    public static void Main(){    

  9. C#のBitConverter.ToDouble()メソッド

    C#のBitConverter.ToDouble()メソッドは、バイト配列の指定された位置で8バイトから変換された倍精度浮動小数点数を返すために使用されます。 同期 構文は次のとおりです- public static double ToDouble (byte[] val, int begnIndex); 上記では、valはバイト配列ですが、begnIndexはval内の開始位置です。 例 例を見てみましょう- using System; public class Demo {    public static void Main(){     &

  10. 例を使用したC#のSingle.CompareTo()メソッド

    C#のSingle.CompareTo()メソッドは、このインスタンスを指定されたオブジェクトまたは別のSingleインスタンスと比較するために使用され、このインスタンスの値が指定された値よりも小さいか、等しいか、または大きいかを示す整数を返します。オブジェクトまたは他の単一インスタンス。 1 st の場合、戻り値はゼロ未満です。 インスタンスが2nd未満です 。両方が等しく、ゼロより大きい場合は0であり、1 st の場合は戻り値は0です。 インスタンスが2ndを超えている 。 同期 構文は次のとおりです- public int CompareTo (float val); publi

  11. C#のBitConverter.ToInt32()メソッド

    C#のBitConverter.ToInt32()メソッドは、バイト配列の指定された位置にある4バイトから変換された32ビットの符号付き整数を返すために使用されます。 構文 構文は次のとおりです- public static int ToInt32 (byte[] val, int begnIndex); 上記では、valはバイト配列ですが、begnIndexはval内の開始位置です。 例 例を見てみましょう- using System; public class Demo {    public static void Main(){     &

  12. 例を使用したC#のSByte.ToString()メソッド

    C#のSByte.ToString()メソッドは、このインスタンスの数値を同等の文字列表現に変換するために使用されます。 構文 構文は次のとおりです- public override string ToString (); 例 例を見てみましょう- using System; public class Demo {    public static void Main(){       sbyte s1 = 10;       sbyte s2 = 100;       Conso

  13. C#のSortedDictionary.Keysプロパティ

    C#のSortedDictionary.Keysプロパティは、SortedDictionary のキーを含むコレクションを取得するために使用されます。 構文 構文は次のとおりです- public System.Collections.Generic.SortedDictionary<TKey,TValue>.KeyCollection Keys { get; } 例 例を見てみましょう- using System; using System.Collections; using System.Collections.Generic; public class Demo { &n

  14. C#のSortedDictionary.Remove()メソッド

    C#のSortedDictionary.Remove()メソッドは、SortedDictionary から指定されたキーを持つ要素を削除するために使用されます。 出力 構文は次のとおりです- public bool Remove (TKey key); 上記のパラメータキーは、削除する要素のキーです。 例 例を見てみましょう- using System; using System.Collections; using System.Collections.Generic; public class Demo {    public static void Main()

  15. C#のRandom.NextDouble()メソッド

    C#のRandom.NextDouble()メソッドは、0.0以上1.0未満のランダムな浮動小数点数を返すために使用されます。 構文 構文は次のとおりです- public virtual double NextDouble (); 例 例を見てみましょう- using System; public class Demo {    public static void Main(){       Random r1 = new Random();       Random r2 = new Random(); &

  16. C#のInsert()メソッド

    C#のInsert()メソッドは、指定された文字列がこのインスタンスの指定されたインデックス位置に挿入された新しい文字列を返すために使用されます。 構文 構文は次のとおりです- public string Insert (int begnIndex, string val); 上記では、パラメータbegnIndexは挿入のゼロベースのインデックス位置であり、valは挿入する文字列です。 例 例を見てみましょう- using System; public class Demo{    public static void Main(){     &n

  17. C#のInt 64 Struct

    Int 64構造体は、64ビットの符号付き整数を表します。これは、負の9,223,372,036,854,775,808から正の9,223,372,036,854,775,807までの値を持つ符号付き整数を表す不変の値型です。 以下はInt64のフィールドです- フィールド 説明 MaxValue Int64の可能な最大値を表します。このフィールドは一定です。 MinValue Int64の可能な最小値を表します。このフィールドは一定です。 以下の方法がいくつかあります- フィールド 説明 CompareTo(Int64) このインスタンスを指定

  18. 例を使用したC#のSingle.IsInfinity()メソッド

    C#のSingle.IsInfinity()メソッドは、指定された数値が負または正の無限大に評価されるかどうかを示す値を返すために使用されます。 構文 構文は次のとおりです- public static bool IsInfinity (float val); 上記のvalは、単精度浮動小数点数です。 例 例を見てみましょう- using System; public class Demo {    public static void Main(){       float f1 = 19.3f;      

  19. C#のQueue.GetEnumerator()メソッド

    C#のQueue.GetEnumerator()メソッドは、キューを反復処理する列挙子を返すために使用されます。 構文 構文は次のとおりです。 public virtual System.Collections.IEnumerator GetEnumerator (); 例 例を見てみましょう- using System; using System.Collections; public class Demo {    public static void Main(){       Queue queue = new Queue(); &

  20. C#のRandom.NextBytes()メソッド

    C#のRandom.NextBytes()メソッドは、指定されたバイト配列の要素を乱数で埋めるために使用されます。 構文 構文は次のとおりです- public virtual void NextBytes (byte[] buffer); バッファの上にはバイトの配列があります。 例 例を見てみましょう- using System; public class Demo {    public static void Main(){       Random r = new Random();       Ra

Total 2668 -コンピューター  FirstPage PreviousPage NextPage LastPage CurrentPage:96/134  20-コンピューター/Page Goto:1 90 91 92 93 94 95 96 97 98 99 100 101 102