Discuss this help topic in SecureBlackbox Forum

WideStrToStr

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  


Use this function to convert a wide string to string.

Declaration

[C#]
    string WideStrToStr(byte[] ASrc);

[VB.NET]
    Function WideStrToStr(ByVal ASrc As Byte()) As String

[Pascal]
    function WideStrToStr(const ASrc : ByteArray) : string;

[C++]
    void WideStrToStr(const std::vector<uint8_t> & ASrc, std::string & OutResult);

Parameters

  • ASrc - a wide string to be converted

Description

Declared in

.NET:
  • Namespace: SBStrUtils
  • Assembly: SecureBlackbox
VCL:
  • Unit: SBStrUtils
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbstrutils.h

See also:     StrToWideStr    

Discuss this help topic in SecureBlackbox Forum