Write a C# Sharp program to concatenate three objects, objects with a variable and 3-element object array

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

Write a C# Sharp program to concatenate three objects, objects with a variable and 3-element object array.

Expected Output :

Search for the target string "Å" in the string "abcЙࠉ".                          
                                                                                 
Using the English (United Kingdom) - "en-GB" culture:                            
Case sensitive:                                                                  
The string to search ends with the target string: False 

الأجوبة

using System;
class Example34
{
    public static void Main() {
    int i = -123;
    Object o = i;
    Object[] objs = new Object[] {-123, -456, -789};
    Console.WriteLine("Concatenate 1, 2, and 3 objects:");
    Console.WriteLine("1) {0}", String.Concat(o));
    Console.WriteLine("2) {0}", String.Concat(o, o));
    Console.WriteLine("3) {0}", String.Concat(o, o, o));
    Console.WriteLine("\nConcatenate 4 objects and a variable length parameter list:");
    Console.WriteLine("4) {0}", String.Concat(o, o, o, o));
    Console.WriteLine("5) {0}", String.Concat(o, o, o, o, o));
    Console.WriteLine("\nConcatenate a 3-element object array:");
    Console.WriteLine("6) {0}", String.Concat(objs));
    }
}
هل كان المحتوى مفيد؟

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

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