• C# 实现 int[]到string[]的转换方法 Array.ConvertAll


    1. using System;   
    2. using System.Collections.Generic;   
    3.   
    4. //int[]到string[]的转换   
    5. public class Example   
    6. {   
    7.     static void Main()   
    8.     {   
    9.         int[] int_array = { 1, 2, 3 };   
    10.   
    11.         string[] str_array = Array.ConvertAll(int_array, new Converter<intstring>(IntToString));   
    12.   
    13.         foreach (string s in str_array)   
    14.         {   
    15.             Console.WriteLine(s);   
    16.         }   
    17.         Console.Read();   
    18.     }   
    19.   
    20.     public static string IntToString(int i)   
    21.     {   
    22.         return i.ToString();   
    23.     }   
    24. }  

  • 相关阅读:
    CentOS下设置ipmi
    CentOS 使用文件增加Swap空间
    CentOS LVM
    做IT需要掌握的电力基础知识
    CentOS 7搭建本地yum源
    Lsi卡和IB卡在CentOS中升级
    Mellanox 4036配置
    IdentityServer4入门二
    IdentityServer4入门一
    RAFT选举算法-分布式数据库困惑
  • 原文地址:https://www.cnblogs.com/liufei88866/p/1762653.html
Copyright © 2020-2023  润新知