コード例 #1
0
ファイル: Server.cs プロジェクト: baffled/bookstore
 public Boolean oconv(String value, String code, ref String newValue)
 {
     lock (_syncCall) {
         newValue = _sess.Oconv(value, code);
         return(_sess.Status == 0);
     }
 }