5 public class ReturnCode {
6 public const int OK = 0;
7 public const int FileNotFound = 1;
10 public ReturnCode(int RC) {
13 override public string ToString() {
15 case OK : return "OK";
16 case FileNotFound: return "FileNotFound";
17 default: throw new System.Exception("Unknown RC: " + Convert.ToString(this.RC));