TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Pat LeRoque
NA
1
0
Values of SettingsFile
Mar 12 2006 1:24 PM
I've got a Settings File (called RegistrySettings) which includes some StringCollections each StringCollection contains 3 Values. Now i want to get the Values out of the Properties. [csharp] public void RegSetsReflection() { System.Reflection.PropertyInfo[] pi = null; RegistrySettings rs = new RegistrySettings(); pi = rs.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly); foreach (PropertyInfo p in pi) { //What Can i do to get the Values out of the properties } [/csharp] Can anyone help ?
Reply
Answers (
0
)
About rand
How I can do this?