俗話說
先說說變量的命名規則吧
特別要注意的是
using System;
using System
using System
namespace ceshi
{
class Program //類名大寫開頭
{
static void Hello() //方法
{
Console
} //結束符一對大括號要匹配
static void Print_number(int[] a)
{
int x;
for (x =
{
Console
}
}
static void Main(string[] args)
{
Hello();
int[] a ={
Print_number(a);
Console
string public=
// 單行注釋
/*
*多行注釋
*/
}
}
}
錯誤
錯誤
方法和類名稱的定義
方法的名字應該要表達這個方法要完成的功能
public void Print_number(int [])
C#中
方法的定義
static void Print_number
{
方法體代碼
}
類的定義:
public class Full
{
public :
string names;
………………
private Method
{}
private Method
{
}
…………………
}
其中
單行和多行的注釋方法都在上面的程序中標出來了
以上都是寫基礎的語法
From:http://tw.wingwit.com/Article/program/net/201311/13169.html