Why can't I pick up this method extension with intellisense? u = u. only reveals Reverse in the dropdown. Thanks.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text;
namespace WebApplication18
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string u;
u = u.
}
public static string Reverse2(this string target)
&n ...
Go to the complete details ...