hi,I have a classB which is in location "test\folder1\generics1" and Class2 which is generic class in another folder for eg test\folder2\ and when i create object for class2 which should be able to acces class1 method which is MethodA() please advise.Thanks in advance
namespace generics1
{
public class B
{
public void methodA()
{
}
}
public class A<T>
{
public void methodB()
{
base.MemberwiseClone();
}
}
class Program
{
static void Main(string[] args)
{
A<B> obj = new A<B>();
}
}
}