我是C#的新手,但我遇到了一个关于如何从不同目录中包含一个类的问题。具体来说,文件存储如下:
Profile *temp = new Profile[NUM_ARRAYS*(2*ARRAY_SIZE)];
//You can code here to copy existing elements from membersArray to temp.
//Elements of temp can be accessed as temp(x*(2*ARRAY_SIZE)+y)` where x and y are dimension of the 2D array and [0 <= x < NUM_ARRAYS] and [0 <= y < (2*ARRAY_SIZE)]
//Now delete membersArray.
delete [] membersArray;
//Now assign new increased sized array to membersArray.
membersArray = temp;
在---
|--- main.cs (class main{}, containing Main(){})
|---
|--- myClass.cs (class myClass{})
中,我将./main.cs
函数包含在名为Main()
的类中,并且需要使用main
中存储的名为myClass
的类。但是,我不知道如何在./subdir/myClass.cs
中加入./subdir/myClass.cs
。
有什么想法吗?