Hi, How to retreive function name in the assembly? Thanks, Popskie
http://docs.msdnaa.net/ark_new3.0/cd...plications.htm W3School C# Impersonation Screen Capture Bohol Dictionary MSDN Search Engine C# Port Programming Creating sharepoint web part using C# Active directory
You need the types in the assembly first, then you can get the methods of each type: Code: System.Reflection.Assembly asm = System.Reflection.Assembly.GetExecutingAssembly(); foreach (Type typ in asm.GetTypes()) { foreach (System.Reflection.MethodInfo mthd in typ.GetMethods()) { MessageBox.Show(typ.Name + "." + mthd.Name); } }
System.Reflection.Assembly asm = System.Reflection.Assembly.GetExecutingAssembly(); foreach (Type typ in asm.GetTypes()) { foreach (System.Reflection.MethodInfo mthd in typ.GetMethods()) { MessageBox.Show(typ.Name + "." + mthd.Name); } }
Why is my data not saved to my database? | MSDN Data Walkthroughs VBForums Database Development FAQ My CodeBank Submissions: VB | C# My Blog: Data Among Multiple Forms (3 parts) Beginner Tutorials: VB | C# | SQL
Thanks jm
Forum Rules