K
K Viltersten
I have a namespace Donkey in a project
called Donkey. In another project i
have created a WPF shell (exciting
stuff, by the way).
Now, i'd like to create an instance of
one of the classes in the Donkey as i
press a button. The code is like this.
private void Execute_Click
(object sender, RoutedEventArgs e) {
Monkey monkey = Monkey (); }
Monkey is a class in Donkey, of course.
Since the compiler doesn't know about
Monkey (nor Donkey) i added:
using Donkey;
but it just nags about references
missing and assemblies being incorrect.
So, i tried to add a reference to
Donkey in my WPF project but i don't
really see what to conenct to what.
Suggestions?
called Donkey. In another project i
have created a WPF shell (exciting
stuff, by the way).
Now, i'd like to create an instance of
one of the classes in the Donkey as i
press a button. The code is like this.
private void Execute_Click
(object sender, RoutedEventArgs e) {
Monkey monkey = Monkey (); }
Monkey is a class in Donkey, of course.
Since the compiler doesn't know about
Monkey (nor Donkey) i added:
using Donkey;
but it just nags about references
missing and assemblies being incorrect.
So, i tried to add a reference to
Donkey in my WPF project but i don't
really see what to conenct to what.
Suggestions?