我想從一個新的函數中使用另一個類的函數,我將從main調用它。我試圖做到這一點如下,但得到一個錯誤:從另一個函數中調用函數?
Error The name 'Class1' does not exist in the current context.
其實,在我的代碼使用不同的名稱,但它只是爲了說明結構,使其更容易爲你閱讀。
public class Class1
{
public static int[] Function1()
{
// code to return value
}
}
public class Class2
{
public static int Function2()
{
int[] Variable = Class1.Function1();
//other code using function1 value
}
}
他們在同一個命名空間嗎?同樣的組裝? –
是的,命名空間是它,謝謝。 – user1166981
當,我應該先發布我的答案:) –