認識 Method 方法
參考資料:
T003_Methods_Static_namespace
Method 寫法
1 | AccessLevel ReturnType methodName(Parameters) |
Method 參數共三種
- pass by value
- pass by reference
1
2
3
4public static void RefKeyword(ref int paramter)
{
paramter = 100;
}
3.Out keyword
允許return 超過一個value