How can I convert below code in LINQ
foreach (RepeaterItem ri in rptNews.Items)
{
HiddenField hdnUserId = (HiddenField)ri.FindControl("hdnId");
int userId = Users.Current.UserId;
if (Convert.ToInt32(hdnUserId.Value) != userId)
{
((ImageButton)ri.FindControl("img1")).Visible = false;
((ImageButton)ri.FindControl("img2")).Visible = false;
}
}
Also please guide me how can I learn to translate this kind of code to linq.