예제 #1
0
 private string DecodeWBXML(byte[] wbxml)
 {
     try
     {
         ASWBXML decoder = new ASWBXML();
         decoder.LoadBytes(wbxml);
         return(decoder.GetXml());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }