在C#项目中包含来自不同目录的类

时间:2016-05-31 07:30:22

标签: c# visual-studio visual-studio-2013

我是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

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

您可以访问解决方案资源管理器 - &gt;显示所有文件 - &gt;导航到目录 - &gt;包括在项目中。

enter image description here