Хотелось бы нечто следующее:
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
A test = new A();
Console.WriteLine(test.B.testMethod());
Console.ReadLine();
}
}
class A
{
public class B
{
private string testB = "I'm test in class B";
public string testMethod ()
{
return testB;
}
}
}
}
Но данный код вызывает ошибку -
An object reference is required for the non-static field, method, or property 'A.B.testMethod()' и
'B': cannot reference a type through an expression; try 'A.B' instead