Demonstrate a generic method : Generic Method « Generics « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Generics » Generic MethodScreenshots 
Demonstrate a generic method
Demonstrate a generic method


using System;

class ArrayUtils {

  public static bool copyInsert<T>(T e, int idx, T[] src, T[] target) {

    if(target.Length < src.Length+1)
      return false;

    for(int i=0, j=0; i < src.Length; i++, j++) {
      if(i == idx) {
        target[j= e;
        j++;
      }
      target[j= src[i];
    }

    return true;
  }
}

class Test {
  public static void Main() {
    int[] nums = 12};
    int[] nums2 = new int[4];

    Console.Write("Contents of nums: ");
    foreach(int x in nums)
      Console.Write(x + " ");

    Console.WriteLine();

    ArrayUtils.copyInsert(992, nums, nums2);

    Console.Write("Contents of nums2: ");
    foreach(int x in nums2)
      Console.Write(x + " ");

    Console.WriteLine();

    string[] strs = "Generics""are""powerful."};
    string[] strs2 = new string[4];

    Console.Write("Contents of strs: ");
    foreach(string s in strs)
      Console.Write(s + " ");

    Console.WriteLine();

    ArrayUtils.copyInsert("in C#"1, strs, strs2);

    Console.Write("Contents of strs2: ");
    foreach(string s in strs2)
      Console.Write(s + " ");

  }
}
           
       
Related examples in the same category
1.This is a prototypical generic method:
2.A prototypical generic methodA prototypical generic method
3.Generic methods can overload nongeneric methodsGeneric methods can overload nongeneric methods
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.