예제 #1
0
파일: Server.cs 프로젝트: baffled/bookstore
 public Boolean iconv(String value, String code, ref String newValue)
 {
     lock (_syncCall) {
         newValue = _sess.Iconv(value, code);
         return(_sess.Status == 0);
     }
 }