Click here to Skip to main content
16,010,351 members
Home / Discussions / C#
   

C#

 
Question.NET C# server and VC++ client Pin
Kabirdas Jaunjare7-Jun-07 2:31
Kabirdas Jaunjare7-Jun-07 2:31 
QuestionHelp with config file error Pin
ttohme7-Jun-07 2:27
ttohme7-Jun-07 2:27 
AnswerRe: Help with config file error Pin
Sathesh Sakthivel7-Jun-07 2:33
Sathesh Sakthivel7-Jun-07 2:33 
GeneralRe: Help with config file error Pin
ttohme7-Jun-07 2:58
ttohme7-Jun-07 2:58 
GeneralRe: Help with config file error Pin
Sathesh Sakthivel7-Jun-07 3:02
Sathesh Sakthivel7-Jun-07 3:02 
GeneralRe: Help with config file error Pin
ttohme7-Jun-07 3:04
ttohme7-Jun-07 3:04 
Questionreport Pin
SVb.net7-Jun-07 2:10
SVb.net7-Jun-07 2:10 
QuestionProblem in retreiving Methods of current class using Reflection Pin
Divya Kasavar7-Jun-07 1:34
Divya Kasavar7-Jun-07 1:34 
Hi,

I am finding problem in retreiving methods of current class.I don't want to display methods of base class(for ex: Object class).
I am trying with following code

Assembly asm = Assembly.LoadFrom("Hello.exe");
Module[] modules = asm.GetModules();
foreach(Module module in modules)
{
Type[] types = module.GetTypes();
foreach(Type type in types)
{
MethodInfo[] methodInfo = type.GetMethods(BindingFlags.DeclaredOnly);
foreach(MethodInfo mi in methodInfo)
{
Console.WriteLine(mi.name);
}
}
}
AnswerRe: Problem in retreiving Methods of current class using Reflection Pin
Christian Graus7-Jun-07 1:50
protectorChristian Graus7-Jun-07 1:50 
AnswerRe: Problem in retreiving Methods of current class using Reflection Pin
leppie7-Jun-07 2:27
leppie7-Jun-07 2:27 
GeneralRe: Problem in retreiving Methods of current class using Reflection Pin
Brady Kelly7-Jun-07 3:19
Brady Kelly7-Jun-07 3:19 
AnswerRe: Problem in retreiving Methods of current class using Reflection Pin
szukuro7-Jun-07 4:20
szukuro7-Jun-07 4:20 
Questionquery: Oledb database and a BindingList Pin
sharp source7-Jun-07 1:29
sharp source7-Jun-07 1:29 
AnswerRe: query: Oledb database and a BindingList [modified] Pin
AikinX7-Jun-07 3:06
AikinX7-Jun-07 3:06 
GeneralRe: query: Oledb database and a BindingList Pin
sharp source7-Jun-07 3:35
sharp source7-Jun-07 3:35 
GeneralRe: query: Oledb database and a BindingList Pin
AikinX7-Jun-07 4:20
AikinX7-Jun-07 4:20 
Questioncreate dynamic text boxes Pin
tauras817-Jun-07 0:51
tauras817-Jun-07 0:51 
AnswerRe: create dynamic text boxes Pin
Sathesh Sakthivel7-Jun-07 1:01
Sathesh Sakthivel7-Jun-07 1:01 
AnswerRe: create dynamic text boxes [modified] Pin
Chintan.Desai7-Jun-07 1:41
Chintan.Desai7-Jun-07 1:41 
GeneralRe: create dynamic text boxes Pin
AikinX7-Jun-07 2:29
AikinX7-Jun-07 2:29 
AnswerRe: create dynamic text boxes Pin
AikinX7-Jun-07 2:24
AikinX7-Jun-07 2:24 
QuestionHello Is there is away to convert GraphicsPath to Image ? Pin
Epsilone37-Jun-07 0:36
Epsilone37-Jun-07 0:36 
AnswerRe: Hello Is there is away to convert GraphicsPath to Image ? Pin
szukuro7-Jun-07 1:50
szukuro7-Jun-07 1:50 
QuestionUSB Scanner and keyboard Pin
AmitG777-Jun-07 0:29
AmitG777-Jun-07 0:29 
AnswerRe: USB Scanner and keyboard Pin
Dave Kreskowiak7-Jun-07 4:25
mveDave Kreskowiak7-Jun-07 4: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.