Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than msvcrt, prefix the name with the module name and a period.
sprintf (msvcrt)
.
C# Signatures:
// When calling with 1 arg
[DllImport("msvcrt.Dll", CallingConvention=CallingConvention.Cdecl)]
static extern int sprintf([In,Out]StringBuilder buffer, String fmt,
String arg1);
// When calling with 2 args
[DllImport("msvcrt.Dll", CallingConvention=CallingConvention.Cdecl)]
static extern int sprintf([In,Out]StringBuilder buffer, String fmt,
String arg1, String arg2);
// When calling with 3 args
[DllImport("msvcrt.Dll", CallingConvention=CallingConvention.Cdecl)]
static extern int sprintf([In,Out]StringBuilder buffer, String fmt,
String arg1, String arg2, String arg3);
VB Signature:
<DllImport("msvcrt.dll", CharSet:=CharSet.Ansi, CallingConvention:=CallingConvention.Cdecl)> _
Public Shared Function sprintf(ByVal TargetString As System.Text.StringBuilder, ByVal FormatSpecifier As String, ByVal i As Int32) As Int32
'Interestingly enough, the following will also work just fine at Module level scope:
'Public Overloads Declare Ansi Function sprintf Lib "msvcrt.dll" (ByVal TargetString As String, ByVal FormatSpecifier As String, ByVal i As Int32) As Int32
'Public Overloads Declare Ansi Function sprintf Lib "msvcrt.dll" (ByVal TargetString As String, ByVal FormatSpecifier As String, ByVal i As Int16) As Int32
'M$ recommends using StringCbPrintf instead of sprintf.
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).