CSharp-Extension method usage

Source: Internet
Author: User

/* Author: Jiangong SUN */Extension methods enable you to "add" methods to existing types without creating a new derived type, recompiling, or otherwise modifying the original type. extension methods are a special kind of static method, but they are called as if they were instance methods on the extended type. the most common extension methods are in LINQ; Linq provides two classes: Enumerable and Q Ueryable. and their extensions methods operate on IEnumerable <T> and IQueryable <T>. extension methods are static methods who reside in static utility classes. for example: public static bool IsNull (this object x) {return x = null;} public static bool IsNullOrEmpty (this object text) {return text = null | (string) text = "";} public static IEnumerable <int> GetOddMembers (this List <int> list ){ Return list. Where (x => x % 2! = 0);} Usage: object y = null; Console. writeLine (y. isNull (); // True y = new object (); Console. writeLine (y. isNull (); // False object s = null; Console. writeLine (s. isNullOrEmpty (); // True s = string. empty; Console. writeLine (s. isNullOrEmpty (); // True s = "hello"; Console. writeLine (s. isNullOrEmpty (); // False Console. writeLine (IsObjectNull. isNullOrEmpty (null); // True List <int> list = new List <int> () {1, 2, 5, 7, 12}; var oddMembers = list. getOddMembers (); foreach (var oddMember in oddMembers) {Console. writeLine (oddMember); // 1 5 7} I Hope this can do help to you! Enjoy coding!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.