G
Guest
Hello;
I have 3 projects, project 1 + 2 are vb.net, project 3 in C#
project 3 : (C#)
public Class3(project2 x)
project 1
public sub ()
dim y as project2.class2()
dim x as project3.class3 = new project3.class3(y)
end sub
All I need to do is to send a referense of a third class between two
projects, one in c# and a second in VB.... this is not working well for me, I
heard I need to have som kind of ref function that returns a referens om my y
object and that I need to send the referens to class3..
Help, how can I don that
I have 3 projects, project 1 + 2 are vb.net, project 3 in C#
project 3 : (C#)
public Class3(project2 x)
project 1
public sub ()
dim y as project2.class2()
dim x as project3.class3 = new project3.class3(y)
end sub
All I need to do is to send a referense of a third class between two
projects, one in c# and a second in VB.... this is not working well for me, I
heard I need to have som kind of ref function that returns a referens om my y
object and that I need to send the referens to class3..
Help, how can I don that