Why is this extension method not working?

public static string ToTrimmedString(this DataRow row, string columnName)
{
    return row[columnName].ToString().Trim();
}

Compiles fine but it doesn't show up in intellisense of the DataRow...

6
задан Dean Kuga 23 March 2011 в 21:38
поделиться