我是c#的新手,我一直在玩它,並陷入從方法返回有用的東西。任何幫助都會很棒。如何從類返回字符串?
我現在有這個權利:
在Form1.cs
:
Animal NewAnimal = new Animal("Jack", "Ramp");
在Animal.cs
:
public Animal(string Fname, string Lname)
{
if (Fname == "Jack" | Lname == "Ramp")
{
string FullName;
FullName = Fname + " " + Lname;
//return FullName; <--- This is what i tried but didn't work--->
}
}
//return FullName; <--- And Also tried this it didn't work --->
從我試過,我做錯事的那些
也許?我將如何返回FullName到Form1.cs並將其顯示在標籤中?
你不能在返回值構造函數。爲全名創建一個屬性,並從你的課程中獲取。 – Harrison
那你爲什麼要爲If語句使用'single bar'?你知道'conditional或'和'bitwise or'之間的區別,對吧? – gunr2171
@ gunr2171我相信|運算符評估語句的兩側,而不是與||短路運營商。這應該工作。 – Harrison