当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# String.Copy()用法及代码示例


C# String.Copy() 方法

String.Copy() 方法用于将字符串复制到新的字符串对象,它返回与给定字符串具有相同值的字符串的新实例。

用法:

    public static string Copy (string str); 

参数:字符串 – 要复制其值

返回值: string- 返回给定强的副本。

例:

    Input:
    string str1 = "IncludeHelp";
    
    creating new string using String.Copy() method:
    string str2 = String.Copy(str1);

    Output:
    str1:IncludeHelp
    str2:IncludeHelp

使用 String.Copy() 方法复制字符串的 C# 示例

using System;
using System.Text;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            string str1 = "IncludeHelp";

            //creating new string using String.Copy() method
            string str2 = String.Copy(str1);

            //printing strings
            Console.WriteLine("str1:" + str1);
            Console.WriteLine("str2:" + str2);

            //hit ENTER to exit
            Console.ReadLine();
        }
    }
}

输出

str1:IncludeHelp
str2:IncludeHelp

参考:String.Copy(String) 方法



相关用法


注:本文由纯净天空筛选整理自 String.Copy() method with example in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。