Radix 64 (uuencoded files)

  • Thread starter Thread starter Guest
  • Start date Start date
Hi,

There is the MailEncoding enumeration that has a member UUEncode which
Specifies that the e-mail message uses UUEncode encoding , you have to use
the namespace System.Web.Mail .





to encode some data , there is the ATL Function UUEncode
inline BOOL UUEncode( const BYTE* pbSrcData, int nSrcLen, LPSTR
szDest, int* pnDestLen, LPCTSTR lpszFile = _T("file"), DWORD dwFlags =
0 ) throw( );hope this would help
 
then , I think you still can use the ATL function UUEncode
it reside in the header "atlenc.h" and it has this definition
dwFlags

if you are a bit familiar with c++ you can write an
small dll that expose this function then reference it in your C# solution
 
Back
Top