Click here to Skip to main content
15,887,746 members
Home / Discussions / C#
   

C#

 
AnswerRe: Could not load type (X) from assembly (XX) Pin
WebMaster31-Aug-10 7:58
WebMaster31-Aug-10 7:58 
GeneralRe: Could not load type (X) from assembly (XX) Pin
Eddy Vluggen31-Aug-10 8:24
professionalEddy Vluggen31-Aug-10 8:24 
GeneralRe: Could not load type (X) from assembly (XX) Pin
WebMaster31-Aug-10 8:40
WebMaster31-Aug-10 8:40 
GeneralRe: Could not load type (X) from assembly (XX) Pin
Eddy Vluggen31-Aug-10 9:29
professionalEddy Vluggen31-Aug-10 9:29 
GeneralRe: Could not load type (X) from assembly (XX) Pin
WebMaster31-Aug-10 10:14
WebMaster31-Aug-10 10:14 
AnswerRe: Could not load type (X) from assembly (XX) Pin
PIEBALDconsult31-Aug-10 10:56
mvePIEBALDconsult31-Aug-10 10:56 
QuestionPassing Linq query results to a different function Pin
Swiftain31-Aug-10 3:57
Swiftain31-Aug-10 3:57 
AnswerRe: Passing Linq query results to a different function Pin
brunoseixas31-Aug-10 4:28
brunoseixas31-Aug-10 4:28 
convert the linq result to list

var results = (from t in query
where t.ProjectID == new Guid(this.Session["ProjectID"].ToString())
orderby t.Number ascending
select new
{
ID = t.ID,
Tag = t.Number,
Description = t.Description,
SubSystems = GeneralHelper.TagSubSystems(t),
Module = t.Area.Module.Name,
Discipline = t.Discipline.Name,
ITRs = GeneralHelper.TagITRsHTML(t)
}).ToList();

GeneralRe: Passing Linq query results to a different function Pin
Swiftain31-Aug-10 4:41
Swiftain31-Aug-10 4:41 
GeneralRe: Passing Linq query results to a different function Pin
Not Active31-Aug-10 4:44
mentorNot Active31-Aug-10 4:44 
GeneralRe: Passing Linq query results to a different function Pin
Swiftain31-Aug-10 4:48
Swiftain31-Aug-10 4:48 
GeneralRe: Passing Linq query results to a different function Pin
Ian Shlasko31-Aug-10 5:26
Ian Shlasko31-Aug-10 5:26 
GeneralRe: Passing Linq query results to a different function Pin
Swiftain31-Aug-10 5:42
Swiftain31-Aug-10 5:42 
GeneralRe: Passing Linq query results to a different function Pin
Not Active31-Aug-10 5:50
mentorNot Active31-Aug-10 5:50 
GeneralRe: Passing Linq query results to a different function Pin
Swiftain31-Aug-10 5:54
Swiftain31-Aug-10 5:54 
GeneralRe: Passing Linq query results to a different function Pin
Ian Shlasko31-Aug-10 6:17
Ian Shlasko31-Aug-10 6:17 
GeneralRe: Passing Linq query results to a different function Pin
Not Active31-Aug-10 6:17
mentorNot Active31-Aug-10 6:17 
GeneralRe: Passing Linq query results to a different function Pin
Swiftain31-Aug-10 22:04
Swiftain31-Aug-10 22:04 
GeneralRe: Passing Linq query results to a different function Pin
Not Active1-Sep-10 1:41
mentorNot Active1-Sep-10 1:41 
GeneralRe: Passing Linq query results to a different function [modified] Pin
Not Active31-Aug-10 5:46
mentorNot Active31-Aug-10 5:46 
GeneralRe: Passing Linq query results to a different function Pin
Swiftain31-Aug-10 5:55
Swiftain31-Aug-10 5:55 
GeneralRe: Passing Linq query results to a different function Pin
Not Active31-Aug-10 6:13
mentorNot Active31-Aug-10 6:13 
QuestionProblem with ToolStrip and ToolStripButtons Pin
Dewald31-Aug-10 2:50
Dewald31-Aug-10 2:50 
AnswerRe: Problem with ToolStrip and ToolStripButtons Pin
phil.o31-Aug-10 2:56
professionalphil.o31-Aug-10 2:56 
GeneralRe: Problem with ToolStrip and ToolStripButtons Pin
Dewald31-Aug-10 3:11
Dewald31-Aug-10 3:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.