C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#Copy()メソッド


C#のCopy()メソッドは、指定された文字列と同じ値を持つ文字列の新しいインスタンスを作成するために使用されます。

構文

public static string Copy (string s);

上記のsはコピーする文字列です。

using System;
public class Demo {
   public static void Main(string[] args) {
      string s1 = "Amy";
      string s2 = "Katie";
      string s3 = String.Copy(s2);
      Console.WriteLine("String1 = "+s1);
      Console.WriteLine("String2 = "+s2);
      Console.WriteLine("Are both the strings equal? = "+s1.Equals(s2));
      Console.WriteLine("Are both the strings equal? = "+s2.Equals(s3));
      Console.WriteLine(string.CompareOrdinal(s1, s2));
      Console.WriteLine(string.CompareOrdinal(s2, s3));
   }
}

出力

String1 = Amy
String2 = Katie
Are both the strings equal? = False
Are both the strings equal? = True
-10
0

using System;
public class Demo {
   public static void Main(string[] args) {
      string s1 = "Gary";
      string s2 = "Gary";
      string s3 = String.Copy(s2);
      Console.WriteLine("String1 = "+s1);
      Console.WriteLine("String2 = "+s2);
      Console.WriteLine("Is s1 and s2 equal? = "+s1.Equals(s2));
      Console.WriteLine("Is s2 and s3 equal? = "+s2.Equals(s3));
      s3 = "Harry";
      Console.WriteLine("Is s2 and s3 equal? = "+s2.Equals(s3));
   }
}

出力

String1 = Gary
String2 = Gary
Is s1 and s2 equal? = True
Is s2 and s3 equal? = True
Is s2 and s3 equal? = False

  1. C#SingleorDefault()メソッド

    このメソッドは、シーケンスの特定の要素を1つ返します。要素がシーケンスに存在しない場合は、デフォルト値が返されます。 ここには2つの文字列配列があります。 string[] str1 = { "one" }; string[] str2 = { }; 最初の配列は単一の要素についてチェックされますが、2番目の配列は空であり、SingleorDefaultを使用してチェックされます。 str2.AsQueryable().SingleOrDefault(); 以下は、SingleorDefault()メソッドの使用法を示す例です。 例 using System; usi

  2. 文字列Join()メソッド

    文字列のJoin()メソッドは、各要素間に指定された区切り文字を使用して、文字列配列のすべての要素を連結します。 次の例では、複数行の文字列があり、区切り文字を「\n」-として設定しています。 String.Join("\n", starray); 例 以下は完全な例です- using System; namespace StringApplication {    class StringProg {       static void Main(string[] args) {     &nb