Click here to Skip to main content
15,909,324 members
Home / Discussions / C#
   

C#

 
QuestionCLR-Trigger coded in c# (Express Edition 2005) Pin
jacklynn_mei26-Jul-07 21:25
jacklynn_mei26-Jul-07 21:25 
AnswerRe: CLR-Trigger coded in c# (Express Edition 2005) Pin
leppie27-Jul-07 3:21
leppie27-Jul-07 3:21 
QuestionRe: CLR-Trigger coded in c# (Express Edition 2005) Pin
jacklynn_mei29-Jul-07 16:22
jacklynn_mei29-Jul-07 16:22 
QuestionAnonymous methods Pin
Michael Sync26-Jul-07 21:24
Michael Sync26-Jul-07 21:24 
AnswerRe: Anonymous methods Pin
Christian Graus26-Jul-07 21:33
protectorChristian Graus26-Jul-07 21:33 
GeneralRe: Anonymous methods Pin
Malcolm Smart26-Jul-07 21:37
Malcolm Smart26-Jul-07 21:37 
GeneralRe: Anonymous methods Pin
Christian Graus26-Jul-07 21:39
protectorChristian Graus26-Jul-07 21:39 
GeneralRe: Anonymous methods Pin
Malcolm Smart26-Jul-07 21:51
Malcolm Smart26-Jul-07 21:51 
Thats slick - didn't know you could do that. I have loads of events firing off to do 1 or 2 lines of code. Humour me here...is the following correct...
System.Timers.Timer t = new System.Timers.Timer();
t.Interval = 100;
t.Elapsed += delegate(object sender, System.Timers.ElapsedEventArgs e) { Console.Write("."); };
t.Start();
while (true)//obviously not a good idea
{
   System.Threading.Thread.Sleep(1000);
}


"More functions should disregard input values and just return 12. It would make life easier." - comment posted on WTF

GeneralRe: Anonymous methods Pin
Christian Graus26-Jul-07 22:01
protectorChristian Graus26-Jul-07 22:01 
AnswerRe: Anonymous methods Pin
szukuro26-Jul-07 21:51
szukuro26-Jul-07 21:51 
GeneralRe: Anonymous methods Pin
J4amieC26-Jul-07 22:07
J4amieC26-Jul-07 22:07 
GeneralRe: Anonymous methods Pin
Kevin McFarlane26-Jul-07 23:46
Kevin McFarlane26-Jul-07 23:46 
GeneralRe: Anonymous methods Pin
Michael Sync26-Jul-07 23:47
Michael Sync26-Jul-07 23:47 
GeneralRe: Anonymous methods Pin
szukuro27-Jul-07 1:06
szukuro27-Jul-07 1:06 
GeneralRe: Anonymous methods Pin
Michael Sync27-Jul-07 1:29
Michael Sync27-Jul-07 1:29 
AnswerRe: Anonymous methods Pin
leppie27-Jul-07 3:22
leppie27-Jul-07 3:22 
Questionstring array Pin
Xmen Real 26-Jul-07 20:52
professional Xmen Real 26-Jul-07 20:52 
AnswerRe: string array Pin
Urs Enzler26-Jul-07 20:54
Urs Enzler26-Jul-07 20:54 
AnswerRe: string array Pin
Christian Graus26-Jul-07 20:59
protectorChristian Graus26-Jul-07 20:59 
GeneralRe: string array Pin
Martin#26-Jul-07 21:00
Martin#26-Jul-07 21:00 
AnswerRe: string array Pin
T.EDY26-Jul-07 21:27
T.EDY26-Jul-07 21:27 
GeneralRe: string array Pin
Xmen Real 26-Jul-07 23:04
professional Xmen Real 26-Jul-07 23:04 
GeneralRe: string array Pin
Martin#26-Jul-07 23:17
Martin#26-Jul-07 23:17 
GeneralRe: string array Pin
Xmen Real 27-Jul-07 2:22
professional Xmen Real 27-Jul-07 2:22 
GeneralRe: string array Pin
Martin#27-Jul-07 3:25
Martin#27-Jul-07 3:25 

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.