I
ilayaraja
Hi All,
I am Ilayaraja. I have a interesting (might be beginners) doubt in
Dot Net framework.
I have an Solution Named X, I have to two projects A and B. A is an
windows Applicaiton developed in VB.Net 2005 and B is an Class
Application developed in C# 2005.
B has an class similar to this..
public class Class1
{
public static string Upper(string a)
{
string s;
s = a.ToUpper();
}
}
I want to refer this class in VB form in the button click event.
How to do that..
One solution I have got is that creating a DLL file for the class and
give it an reference in the VB project and remove the Class application
from the solution file.
Do we have any other solution for this doubt?
Please help me on this.
I am Ilayaraja. I have a interesting (might be beginners) doubt in
Dot Net framework.
I have an Solution Named X, I have to two projects A and B. A is an
windows Applicaiton developed in VB.Net 2005 and B is an Class
Application developed in C# 2005.
B has an class similar to this..
public class Class1
{
public static string Upper(string a)
{
string s;
s = a.ToUpper();
}
}
I want to refer this class in VB form in the button click event.
How to do that..
One solution I have got is that creating a DLL file for the class and
give it an reference in the VB project and remove the Class application
from the solution file.
Do we have any other solution for this doubt?
Please help me on this.