Tagged Questions
6
votes
5answers
2k views
How to call extension methods using Eval in a databound control
I have a simple extension method on the int type so I can do the following:
string timeLength = 61.ToTime() // timeLength will be "1:01"
This works great in code, but I want to use this extension ...