Func जेनेरिक प्रकार अनाम विधियों को संग्रहीत करता है और एक पैरामीटरयुक्त प्रकार है।
नीचे दिए गए उदाहरण में, हमारे पास 4 func प्रकार का उदाहरण है -
पहला प्रकार इंट प्राप्त करता है और स्ट्रिंग लौटाता है
Func<int, string> one = (p) => string.Format("{0}", p);
दूसरा प्रकार बूल और लंबा प्राप्त करता है और स्ट्रिंग देता है
Func<bool, long, string> two = (q, p) =>string.Format("{0} and {1}", q, p);
तीसरा प्रकार बूल और इंट प्राप्त करता है और स्ट्रिंग लौटाता है
Func<bool, int, string> three = (q, p) => string.Format("{0} and {1}", q, p);
चौथा प्रकार दशमलव प्राप्त करता है और स्ट्रिंग लौटाता है
Func<decimal, string> four = (p) =>string.Format("{0}", p);
आइए देखें कि उन्हें कैसे प्रदर्शित किया जाए -
उदाहरण
using System; using System.IO; namespace Demo { class Program { static void Main(string[] args) { // four func type instance // first type receives int and returns string Func<int, string> one = (p) => string.Format("{0}", p); // second type receives bool & long and returns string Func<bool, long, string> two = (q, p) => string.Format("{0} and {1}", q, p); // three type receives bool & int and returns string Func<bool, int, string> three = (q, p) => string.Format("{0} and {1}", q, p); // fourth type receives decimal and returns string Func<decimal, string> four = (p) => string.Format("{0}", p); Console.WriteLine(one.Invoke(25)); Console.WriteLine(two.Invoke(false, 76756566)); Console.WriteLine(three.Invoke(true, 50)); Console.WriteLine(four.Invoke(1.2m)); } } }
आउटपुट
25 False and 76756566 True and 50 1.2