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

C#

 
GeneralRe: VoIP Pin
Jijo BP1-Mar-06 23:21
Jijo BP1-Mar-06 23:21 
GeneralRe: VoIP Pin
Colin Angus Mackay2-Mar-06 0:07
Colin Angus Mackay2-Mar-06 0:07 
AnswerRe: VoIP Pin
ChesterPoindexter2-Mar-06 7:44
professionalChesterPoindexter2-Mar-06 7:44 
Questionhelp Pin
nidheeshkayal1-Mar-06 22:50
nidheeshkayal1-Mar-06 22:50 
AnswerRe: help Pin
J4amieC1-Mar-06 23:06
J4amieC1-Mar-06 23:06 
AnswerRe: help Pin
Colin Angus Mackay1-Mar-06 23:15
Colin Angus Mackay1-Mar-06 23:15 
GeneralRe: help Pin
chakkara20031-Mar-06 23:34
chakkara20031-Mar-06 23:34 
GeneralRe: help Pin
Colin Angus Mackay2-Mar-06 0:15
Colin Angus Mackay2-Mar-06 0:15 
chakkara2003 wrote:
can u write some code


Of course I can.

An example of pulling out a list of methods from a specific type:
using System.Reflection;
System.Type myType = typeof(MyClass);
MethodInfo[] theMethods = myType.GetMethods();
foreach(MethodInfo method in theMethods)
{
    Console.WriteLine("{0}", method.Name);
}


Links to MSDN:
* System.Type class[^]
* Type.GetMethods()[^]
* System.Reflection.MethodInfo class[^]

Does this help?

ColinMackay.net
Scottish Developers are looking for speakers for user group sessions over the next few months. Do you want to know more?

GeneralRe: help Pin
chakkara20032-Mar-06 1:37
chakkara20032-Mar-06 1:37 
GeneralRe: help Pin
J4amieC2-Mar-06 1:59
J4amieC2-Mar-06 1:59 
Generalthanx, the code is working but Pin
nidheeshkayal2-Mar-06 2:49
nidheeshkayal2-Mar-06 2:49 
GeneralRe: thanx, the code is working but Pin
J4amieC2-Mar-06 3:32
J4amieC2-Mar-06 3:32 
QuestionC - code for fuzzy logic controller Pin
Venkatmavuru1-Mar-06 22:39
Venkatmavuru1-Mar-06 22:39 
AnswerRe: C - code for fuzzy logic controller Pin
Ingo2-Mar-06 2:29
Ingo2-Mar-06 2:29 
GeneralRe: C - code for fuzzy logic controller Pin
Curtis Schlak.3-Mar-06 15:31
Curtis Schlak.3-Mar-06 15:31 
GeneralRe: C - code for fuzzy logic controller Pin
Ingo5-Mar-06 21:13
Ingo5-Mar-06 21:13 
GeneralRe: C - code for fuzzy logic controller Pin
PredictorX20-Mar-10 4:09
PredictorX20-Mar-10 4:09 
AnswerRe: C - code for fuzzy logic controller Pin
Curtis Schlak.2-Mar-06 12:32
Curtis Schlak.2-Mar-06 12:32 
Questionlistbox - valuemember access Pin
madhusri1-Mar-06 22:35
madhusri1-Mar-06 22:35 
AnswerRe: listbox - valuemember access Pin
Stefan Troschuetz1-Mar-06 23:43
Stefan Troschuetz1-Mar-06 23:43 
GeneralRe: listbox - valuemember access Pin
madhusri2-Mar-06 0:23
madhusri2-Mar-06 0:23 
Questionplz help Pin
nidheeshkayal1-Mar-06 22:35
nidheeshkayal1-Mar-06 22:35 
AnswerRe: plz help Pin
madhusri1-Mar-06 22:37
madhusri1-Mar-06 22:37 
GeneralRe: plz help Pin
nidheeshkayal1-Mar-06 22:42
nidheeshkayal1-Mar-06 22:42 
GeneralRe: plz help Pin
Vasudevan Deepak Kumar1-Mar-06 23:14
Vasudevan Deepak Kumar1-Mar-06 23:14 

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.