Discuss this help topic in SecureBlackbox Forum

StrToWideStr

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  


Use this function to convert string to wide string.

Declaration

[C#]
    byte[] StrToWideStr(string AStr);

[VB.NET]
    Function StrToWideStr(ByVal AStr As String) As Byte()

[Pascal]
    function StrToWideStr(const AStr : string) : ByteArray;

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

Parameters

  • AStr - 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:     WideStrToStr    

Discuss this help topic in SecureBlackbox Forum