JaedenRuiner
Well-known member
- Joined
- Aug 13, 2007
- Messages
- 340
- Programming Experience
- 10+
Okay, so i have two projects. one is my application, the other is an Assembly I've been working on, in some ways reinventing the wheel, but in others providing that particular brand of functionality I normally use all the time and hate having to re-write. You know, for Generic Collections and allow a built in sort function, or other event driven notifications that are not always used but when needed they are so nice that i don't have to re-write them.
However, a perfect example of the issues i'm having between the app and the assembly dll is that certain extensions don't work.
for example the .Cast extension that seems to work on every ICollection implementation (or maybe it's IEnumerble) but that is of little concern.
In my App I can do this:
My.Settings.Properties.Cast(Of Configuration.SettingsProperty).ToArray and voila it works.
When I try the same thing in the Assembly DLL I get:
'Cast' is not a member of 'SettingsPropertyCollection'
So what reference do i need to add to get that thing to work?
thanks
However, a perfect example of the issues i'm having between the app and the assembly dll is that certain extensions don't work.
for example the .Cast extension that seems to work on every ICollection implementation (or maybe it's IEnumerble) but that is of little concern.
In my App I can do this:
My.Settings.Properties.Cast(Of Configuration.SettingsProperty).ToArray and voila it works.
When I try the same thing in the Assembly DLL I get:
'Cast' is not a member of 'SettingsPropertyCollection'
So what reference do i need to add to get that thing to work?
thanks