Common.cs 650 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.InteropServices;
  5. using System.Text;
  6. namespace HPSocketCS
  7. {
  8. public class Common
  9. {
  10. /// <summary>
  11. ///
  12. /// </summary>
  13. /// <param name="ptr"></param>
  14. public static string PtrToAnsiString(IntPtr ptr)
  15. {
  16. string str = "";
  17. try
  18. {
  19. if (ptr != IntPtr.Zero)
  20. {
  21. str = Marshal.PtrToStringAnsi(ptr);
  22. }
  23. }
  24. catch (Exception)
  25. {
  26. }
  27. return str;
  28. }
  29. }
  30. }