C#での定数の定義について紹介します。
C#では定数定義は const を用います。(#defineはコンパイル時のフラグ定義になります。)
const
const int MAX_SIZE=200; const string CRLF="\r\n";