I'm having a compiler error on line 63:
<div class="dateAdded">Article submitted @article.DateAdded.ToRelativeDateStringUtc()</div>
Compiler Error Message: CS1061: 'System.DateTime' does not contain a definition for 'ToRelativeDateStringUtc' and no extension method 'ToRelativeDateStringUtc' accepting a first argument of type 'System.DateTime' could be found (are you missing a using directive or an assembly reference?)
Here is where my error is occurring. I have a class that contains ToRelativeDateStringUtc()
included in my program. Is this a MS
class that I have to import? I do not see it listed anywhere in the .net reference list. I'm sure its something simple, does anyone have any ideas?