Click here to Skip to main content
15,905,013 members
Home / Discussions / C#
   

C#

 
GeneralRe: steganography implemented in c sharp Pin
dhananjaysonar31-Mar-07 4:45
dhananjaysonar31-Mar-07 4:45 
GeneralRe: steganography implemented in c sharp Pin
Vega0231-Mar-07 6:29
Vega0231-Mar-07 6:29 
GeneralRe: steganography implemented in c sharp Pin
Colin Angus Mackay31-Mar-07 7:17
Colin Angus Mackay31-Mar-07 7:17 
AnswerRe: steganography implemented in c sharp Pin
Stefan Troschuetz31-Mar-07 5:49
Stefan Troschuetz31-Mar-07 5:49 
Questioninvoking a function with string[] Pin
ceken31-Mar-07 3:30
ceken31-Mar-07 3:30 
AnswerRe: invoking a function with string[] Pin
Leslie Sanford31-Mar-07 6:03
Leslie Sanford31-Mar-07 6:03 
GeneralRe: invoking a function with string[] Pin
ceken1-Apr-07 9:46
ceken1-Apr-07 9:46 
GeneralRe: invoking a function with string[] Pin
Leslie Sanford1-Apr-07 11:51
Leslie Sanford1-Apr-07 11:51 
ceken wrote:
object[] veri = new object[] { "data1", "data2" };


This gives you a problem for the same reasons I described in my previous post. You need to wrap your array inside an object array so that it's treated as one object:

string[] veri = { "data1", "data2" };
 
this.BeginInvoke(writeTb, new object { ver });


The string array is placed in an object array. The object array being passed to BeginInvoke only has one element, so it matches the parameter count of your callback when it passes that element to it.
QuestionCalling AddIn functions Pin
swje31-Mar-07 2:55
swje31-Mar-07 2:55 
AnswerRe: Calling AddIn functions Pin
Judah Gabriel Himango31-Mar-07 9:09
sponsorJudah Gabriel Himango31-Mar-07 9:09 
QuestionFileSize on a Website Pin
Kitchen_31-Mar-07 2:16
Kitchen_31-Mar-07 2:16 
AnswerRe: FileSize on a Website Pin
Dave Kreskowiak31-Mar-07 7:50
mveDave Kreskowiak31-Mar-07 7:50 
AnswerRe: FileSize on a Website Pin
Vasudevan Deepak Kumar1-Apr-07 5:32
Vasudevan Deepak Kumar1-Apr-07 5:32 
AnswerRe: FileSize on a Website Pin
Kitchen_1-Apr-07 14:30
Kitchen_1-Apr-07 14:30 
QuestionHow can I intercept a click in a WebBrowser Control? Pin
MaryGeorge31-Mar-07 2:01
MaryGeorge31-Mar-07 2:01 
AnswerRe: How can I intercept a click in a WebBrowser Control? Pin
Vasudevan Deepak Kumar1-Apr-07 5:38
Vasudevan Deepak Kumar1-Apr-07 5:38 
GeneralRe: How can I intercept a click in a WebBrowser Control? Pin
MaryGeorge2-Apr-07 3:33
MaryGeorge2-Apr-07 3:33 
QuestionSystem.Reflection.Emit.EventBuilder Pin
cybertone31-Mar-07 1:59
cybertone31-Mar-07 1:59 
AnswerRe: System.Reflection.Emit.EventBuilder Pin
Vasudevan Deepak Kumar1-Apr-07 5:42
Vasudevan Deepak Kumar1-Apr-07 5:42 
QuestionRe: System.Reflection.Emit.EventBuilder Pin
cybertone1-Apr-07 20:30
cybertone1-Apr-07 20:30 
QuestionGood old StringGrid Pin
Dewald30-Mar-07 23:37
Dewald30-Mar-07 23:37 
QuestionRe: Good old StringGrid Pin
Noman Aftab31-Mar-07 0:50
Noman Aftab31-Mar-07 0:50 
AnswerRe: Good old StringGrid Pin
Dewald31-Mar-07 1:10
Dewald31-Mar-07 1:10 
GeneralRe: Good old StringGrid Pin
Noman Aftab31-Mar-07 2:20
Noman Aftab31-Mar-07 2:20 
Questioninternal/internal proected Pin
amaneet30-Mar-07 22:49
amaneet30-Mar-07 22:49 

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.