2009/02/01(Sun) 14:16:52 編集(投稿者)
お望み通り、元コードとほとんどコンパチなC#コードです。
じっくり吟味して学習してください。
class Program {
public static void Main(string[] arg) {
try {
string data = new System.IO.StreamReader(arg.Length > 0 ? arg[0]:"data.txt", System.Text.Encoding.GetEncoding("shift_jis")).ReadToEnd();
} catch ( System.Exception ) {
System.Console.WriteLine("file could not be read.");
}
}
}