Click here to Skip to main content
15,891,597 members
Home / Discussions / C#
   

C#

 
Questionmethod delivers a structure, but there is no type that handles it... what do i do? Pin
bbranded16-Apr-09 10:42
bbranded16-Apr-09 10:42 
AnswerRe: method delivers a structure, but there is no type that handles it... what do i do? Pin
riced16-Apr-09 11:56
riced16-Apr-09 11:56 
QuestionRe: method delivers a structure, but there is no type that handles it... what do i do? [modified] Pin
bbranded17-Apr-09 3:14
bbranded17-Apr-09 3:14 
AnswerRe: method delivers a structure, but there is no type that handles it... what do i do? Pin
riced17-Apr-09 5:59
riced17-Apr-09 5:59 
GeneralRe: method delivers a structure, but there is no type that handles it... what do i do? [modified] Pin
bbranded17-Apr-09 6:07
bbranded17-Apr-09 6:07 
GeneralRe: method delivers a structure, but there is no type that handles it... what do i do? Pin
riced17-Apr-09 6:22
riced17-Apr-09 6:22 
GeneralRe: method delivers a structure, but there is no type that handles it... what do i do? Pin
bbranded17-Apr-09 9:38
bbranded17-Apr-09 9:38 
AnswerRe: method delivers a structure, but there is no type that handles it... what do i do? Pin
bbranded17-Apr-09 6:00
bbranded17-Apr-09 6:00 
I think what I'm going to have to do is use Type and use Reflection!

Type MSDN
using System;<br />
using System.Reflection;<br />
<br />
class Example<br />
{<br />
    static void Main()<br />
    {<br />
        Type t = typeof(String);<br />
<br />
        MethodInfo substr = t.GetMethod("Substring", <br />
            new Type[] { typeof(int), typeof(int) });<br />
<br />
        Object result = <br />
            substr.Invoke("Hello, World!", new Object[] { 7, 5 });<br />
        Console.WriteLine("{0} returned \"{1}\".", substr, result);<br />
    }<br />
}<br />
<br />
/* This code example produces the following output:<br />
<br />
System.String Substring(Int32, Int32) returned "World".<br />
 */

GeneralRe: method delivers a structure, but there is no type that handles it... what do i do? [modified] Pin
bbranded17-Apr-09 8:08
bbranded17-Apr-09 8:08 
QuestionWhat is the best way to build listener ? Pin
E_Gold16-Apr-09 10:38
E_Gold16-Apr-09 10:38 
Questionexcel ado.net sql problem Pin
haseeb_saeed16-Apr-09 9:44
haseeb_saeed16-Apr-09 9:44 
AnswerRe: excel ado.net sql problem Pin
Henry Minute16-Apr-09 10:21
Henry Minute16-Apr-09 10:21 
GeneralRe: excel ado.net sql problem Pin
buachaill cliste16-Apr-09 11:38
buachaill cliste16-Apr-09 11:38 
Questioncreating a playlist of videos Pin
mist_psycho16-Apr-09 9:17
mist_psycho16-Apr-09 9:17 
AnswerRe: creating a playlist of videos Pin
Christian Graus16-Apr-09 12:16
protectorChristian Graus16-Apr-09 12:16 
Generalcreating a playlist of videos Pin
mist_psycho16-Apr-09 19:51
mist_psycho16-Apr-09 19:51 
QuestionI am looking for a great C# learning book - trying to switch from VB.NET to C#. Pin
Slow Learner16-Apr-09 8:36
Slow Learner16-Apr-09 8:36 
AnswerRe: I am looking for a great C# learning book - trying to switch from VB.NET to C#. Pin
Eddy Vluggen16-Apr-09 8:45
professionalEddy Vluggen16-Apr-09 8:45 
GeneralRe: I am looking for a great C# learning book - trying to switch from VB.NET to C#. Pin
Slow Learner16-Apr-09 8:58
Slow Learner16-Apr-09 8:58 
AnswerRe: I am looking for a great C# learning book - trying to switch from VB.NET to C#. Pin
Mycroft Holmes16-Apr-09 15:06
professionalMycroft Holmes16-Apr-09 15:06 
GeneralRe: I am looking for a great C# learning book - trying to switch from VB.NET to C#. Pin
Slow Learner17-Apr-09 2:14
Slow Learner17-Apr-09 2:14 
QuestionListBox Binding Problem. Pin
hdv21216-Apr-09 8:32
hdv21216-Apr-09 8:32 
AnswerRe: ListBox Binding Problem. Pin
Luc Pattyn16-Apr-09 9:03
sitebuilderLuc Pattyn16-Apr-09 9:03 
GeneralRe: ListBox Binding Problem. Pin
Henry Minute16-Apr-09 9:06
Henry Minute16-Apr-09 9:06 
GeneralRe: ListBox Binding Problem. Pin
hdv21216-Apr-09 9:35
hdv21216-Apr-09 9:35 

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.