String - RemoveWhere

A string extension method that removes the letter.

Try it

public static void Main()
{	
    string input = "Entity Framework x";

    //C# Extension Method: String - RemoveWhere
    string output = input.RemoveWhere(c => c == 'x');

    System.Console.WriteLine(output);

}

View Source
using System;
using System.Linq;

public static partial class Extensions
{
    /// <summary>
    ///     A string extension method that removes the letter.
    /// </summary>
    /// <param name="this">The @this to act on.</param>
    /// <param name="predicate">The predicate.</param>
    /// <returns>A string.</returns>
    public static string RemoveWhere(this string @this, Func<char, bool> predicate)
    {
        return new string(@this.ToCharArray().Where(x => !predicate(x)).ToArray());
    }
}