Write a C# Sharp program to convert all the values of a given array of mixed values to string values

  • برمجة سي شارب
  • برمجة

Write a C# Sharp program to convert all the values of a given array of mixed values to string values

Sample Output:

Printing original array elements and their types:
Value-> 25 :: Type-> System.Int32
Value-> Anna :: Type-> System.String
Value-> False :: Type-> System.Boolean
Value-> 4/15/2021 10:37:47 AM :: Type-> System.DateTime
Value-> 112.22 :: Type-> System.Double

Printing array elements and their types:
Value-> 25 :: Type-> System.String
Value-> Anna :: Type-> System.String
Value-> False :: Type-> System.String
Value-> 4/15/2021 10:37:47 AM :: Type-> System.String
Value-> 112.22 :: Type-> System.String

الأجوبة

using System;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
          {
            object[] mixedArray = new object[5];
            mixedArray[0] = 25;
            mixedArray[1] = "Anna";
            mixedArray[2] = false;
            mixedArray[3] = System.DateTime.Now;
            mixedArray[4] = 112.22;
            Console.WriteLine("Printing original array elements and their types:");
            for (int i = 0; i < mixedArray.Length; i++)
            {
                Console.WriteLine("Value-> " + mixedArray[i] + " :: Type-> " + mixedArray[i].GetType());
            }
            string[] new_nums = test(mixedArray);
            Console.WriteLine("\nPrinting array elements and their types:");
            for (int i = 0; i < new_nums.Length; i++)
            {
                Console.WriteLine("Value-> "+new_nums[i]+" :: Type-> "+new_nums[i].GetType());
            }
        }
        public static string[] test(object[] nums)
        {
            return Array.ConvertAll(nums, x => x.ToString());
        }
     }
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...