Click here to Skip to main content
15,892,298 members
Home / Discussions / C#
   

C#

 
Questionsizeof struct with array Pin
Ronenb5-Nov-09 2:03
Ronenb5-Nov-09 2:03 
AnswerRe: sizeof struct with array Pin
Luc Pattyn5-Nov-09 2:23
sitebuilderLuc Pattyn5-Nov-09 2:23 
GeneralRe: sizeof struct with array Pin
Ronenb7-Nov-09 19:16
Ronenb7-Nov-09 19:16 
GeneralRe: sizeof struct with array Pin
Luc Pattyn8-Nov-09 1:07
sitebuilderLuc Pattyn8-Nov-09 1:07 
GeneralRe: sizeof struct with array Pin
Ronenb8-Nov-09 4:36
Ronenb8-Nov-09 4:36 
QuestionSplit Name Field Pin
kruegersck5-Nov-09 1:58
kruegersck5-Nov-09 1:58 
AnswerRe: Split Name Field Pin
musefan5-Nov-09 2:30
musefan5-Nov-09 2:30 
AnswerRe: Split Name Field Pin
Shameel5-Nov-09 2:33
professionalShameel5-Nov-09 2:33 
AnswerRe: Split Name Field Pin
V.5-Nov-09 4:21
professionalV.5-Nov-09 4:21 
AnswerRe: Split Name Field Pin
PIEBALDconsult5-Nov-09 5:34
mvePIEBALDconsult5-Nov-09 5:34 
GeneralRe: Split Name Field Pin
Luc Pattyn5-Nov-09 12:51
sitebuilderLuc Pattyn5-Nov-09 12:51 
QuestionHow to Hide MenuBar/ToolBar while displaying Office Document using Web Browser? Pin
muhammad_umair5-Nov-09 1:22
muhammad_umair5-Nov-09 1:22 
QuestionIs there a better way for updating bound controls when updating the data source manually? Pin
TheFoZ5-Nov-09 0:40
TheFoZ5-Nov-09 0:40 
AnswerRe: Is there a better way for updating bound controls when updating the data source manually? Pin
Gerry Schmitz5-Nov-09 15:34
mveGerry Schmitz5-Nov-09 15:34 
GeneralRe: Is there a better way for updating bound controls when updating the data source manually? Pin
TheFoZ5-Nov-09 22:23
TheFoZ5-Nov-09 22:23 
GeneralRe: Is there a better way for updating bound controls when updating the data source manually? Pin
Gerry Schmitz6-Nov-09 6:57
mveGerry Schmitz6-Nov-09 6:57 
AnswerRe: Is there a better way for updating bound controls when updating the data source manually? Pin
TheFoZ9-Nov-09 23:13
TheFoZ9-Nov-09 23:13 
Generalcasting struct to list<object></object> Pin
manowj4-Nov-09 23:43
manowj4-Nov-09 23:43 
Hi Everyone,

I have placed a sample code below in which i need to type cast from struct to list<object>. In this below example how i can add emp1 to operation list

public struct Operation
{
public bool success;
public string msg;
public List<Object> ListTest;
}
public struct Emp
{
public int EmpID;
public string EmpName;
}
public class Class1
{
public Class1()
{
//
// TODO: Add constructor logic here
//

}

public void Method1()
{
Emp emp1 = new Emp();
Operation op = new Operation();
emp1.EmpID = 1;
emp1.EmpName = "Manoj";
op.success = true;
op.msg = "pass";
op.ListTest.Add(emp1);
}
}

Regards,
Manowj

GeneralRe: casting struct to list Pin
OriginalGriff5-Nov-09 0:14
mveOriginalGriff5-Nov-09 0:14 
GeneralRe: casting struct to list [modified] Pin
manowj5-Nov-09 0:35
manowj5-Nov-09 0:35 
GeneralRe: casting struct to list Pin
OriginalGriff5-Nov-09 0:53
mveOriginalGriff5-Nov-09 0:53 
QuestionRead text from notepad in c# Pin
krinaljariwala4-Nov-09 22:43
krinaljariwala4-Nov-09 22:43 
AnswerRe: Read text from notepad in c# Pin
Covean4-Nov-09 23:16
Covean4-Nov-09 23:16 
GeneralRe: Read text from notepad in c# Pin
krinaljariwala4-Nov-09 23:38
krinaljariwala4-Nov-09 23:38 
GeneralRe: Read text from notepad in c# Pin
Covean4-Nov-09 23:44
Covean4-Nov-09 23:44 

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.