List<ProjectFile> projectFilelist = null;
projectFilelist = projectFileBM.GetAllProjectFileByProjectIdAndPartNum(projectID, string.Empty);
The return type in which this code has written is IEnumerable Now I wanted to return this list of projectFileList.
How can I convert this and return?
Try the above