I want to be less fat!, so I am going to complete the Zombies Run 5k Training. This is not that first time I have wanted to be less fat in fact I have tried several things:
So they say 5th time is the charm so It training starts today, again.
You can rewrite:
var result = object.Where(m => m.Id == id).FirstOrDefault()
as
var result = object.FirstOrDefault(m => m.Id == id);
Thank you ReSharper
Anonymous asked: if i ask a question, where does it go and how do i see the answer? is this powered by a magic 8 ball?
Reply hazy, try again
Adding a useless test to increase test coverage check.
[TestMethod]
[ExpectedException(typeof(NotImplementedException))]
public void AddUsersToRolesTest()
{
Roles.AddUsersToRoles(new string[] { }, new string[] { });
}