জেনেরিক আপনাকে একটি ক্লাস বা পদ্ধতি লিখতে দেয় যা যেকোনো ডেটা টাইপের সাথে কাজ করতে পারে। −
টাইপ প্যারামিটার সহ একটি জেনেরিক পদ্ধতি ঘোষণা করুনstatic void Swap(ref T lhs, ref T rhs) {}
উপরের দেখানো জেনেরিক পদ্ধতিকে কল করার জন্য, এখানে একটি উদাহরণ দেওয়া হল −
Swap(ref a, ref b);
আসুন দেখি কিভাবে C# −
এ একটি জেনেরিক পদ্ধতি তৈরি করা যায়উদাহরণ
using System; using System.Collections.Generic; namespace Demo { class Program { static void Swap(ref T lhs, ref T rhs) { T temp; temp = lhs; lhs = rhs; rhs = temp; } static void Main(string[] args) { int a, b; char c, d; a = 45; b = 60; c = 'K'; d = 'P'; Console.WriteLine("Int values before calling swap:"); Console.WriteLine("a = {0}, b = {1}", a, b); Console.WriteLine("Char values before calling swap:"); Console.WriteLine("c = {0}, d = {1}", c, d); Swap(ref a, ref b); Swap(ref c, ref d); Console.WriteLine("Int values after calling swap:"); Console.WriteLine("a = {0}, b = {1}", a, b); Console.WriteLine("Char values after calling swap:"); Console.WriteLine("c = {0}, d = {1}", c, d); Console.ReadKey(); } } }
আউটপুট
Int values before calling swap: a = 45, b = 60 Char values before calling swap: c = K, d = P Int values after calling swap: a = 60, b = 45 Char values after calling swap: c = P, d = K