Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8846897
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T12:06:20+00:00 2026-06-14T12:06:20+00:00

I want to create an extension method of class IEnumerable and create a method

  • 0

I want to create an extension method of class IEnumerable and create a method that retrieves the last item in the collection that is not string.empty. The collection will be always an array and the returned value a string.

I consider a null value an empty string.

I don’t know how to do this in a generics way. I wonder if I should make it a generic method since the type will be an array of string.

I will call this function like this:

 string s = myArray.LastNotEmpty<???>();

How can I face this?

static class Enumerable
{
    public static TSource LastNotEmpty<TSource>(this IEnumerable<TSource> source)
    {

    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T12:06:21+00:00Added an answer on June 14, 2026 at 12:06 pm
    static class MyEnumerable
    {
        public static TSource LastNotEmpty<TSource>(this IEnumerable<TSource> source) where TSource:String
        {
            return source.LastOrDefault(x=>!string.isNullOrEmpty(x));
        }
    }
    

    or more specific

    static class MyEnumerable
    {
        public static string LastNotEmpty(this IEnumerable<string> source) 
        {
            return source.LastOrDefault(x=>!string.isNullOrEmpty(x));
        }
    }
    

    As stated in other answers, Enumerable already exists in the System.Linq namespace so the static class has been named differently here.

    You then just make sure that your calling code has a using for the namespace of this class and then just use

    string s = myArray.LastNotEmpty();
    

    s will equal null if there are no occurrences.

    The above calling method could be used by either implementation of LastNotEmpty as the GenericType arugments could be worked out by the compiler.

    The updates below this line are not needed to answer the question they are just provided as alternative solutions for a more generic approach

    UPDATE – Just to please Recursive who wanted a fully generic solution. The OP has already stated that the collection will always be strings but…

    static class MyEnumerable {
      public static string LastNotEmpty<TSource>(this IEnumerable<TSource> source) {
        if (source==null) return null;  // Deals with null collection
        return source.OfType<string>().LastOrDefault(x=>!string.IsNullOrEmpty(x);
      }
    }
    

    This will first filter the collection to those of type string. The result will be null if the collection is null or if there are no results found..

    UPDATE Again – This is only to try and make Recursive feel good 🙂

    This version will return the first TSource that is not equal to either the empty string or null. The ReferenceEquals is used because resharper complains about comparing a possible value type with null…

    static class MyEnumerable {
      public static TSource LastNotEmpty<TSource>(this IEnumerable<TSource> source) {
        if (source==null) return null;  // Deals with null collection
        return source.LasdtOrDefault(x=>
                                        !ReferenceEquals(x,null)
                                        &&
                                        !x.Equals(String.Empty)
                                     );
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create an extension method like this public static bool AllConsecutives(this IEnumerable<int>
I want to create an extension method for HtmlHelper that allows me to create
I need a way to create an extension method off of an IEnumerable that
I want to write an extension method for a collection of objects that uses
I want to create an extension method which I can use in CSHTML file
I'm trying to create extension method that checks if specific object has specific attribute.
Possible Duplicate: Is it possible to create an extension method to format a string?
I have a list that contains FrameworkElements and I want to create an extension
I want to create a extension class for the List type so users can
I need to create an extension method to array class, but this extension method

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.