Mehmood

Mehmood

  • NA
  • 2
  • 23.5k

Cannot convert from 'method group'

Jul 27 2018 1:07 AM
I have a little confusing about this error.
  
I am new in c#.
 
Kindly guide me ho to solve
 
Cannot convert from 'method group' to 'System.Action<object>
 
private void DeleteStudent(ObservableCollection<User> StudentCollection, User Instance)
{
StudentCollection.Remove(StudentCollection.SingleOrDefault(i => i.UserId == Instance.UserId));
}
 
how to pass the parameter to solve this error

Answers (1)