wsprintf
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
public static extern int wsprintf(
StringBuilder lpOut,
string lpFmt,
params object[] args
);
Microsoft documentation: Link
Last updated
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
public static extern int wsprintf(
StringBuilder lpOut,
string lpFmt,
params object[] args
);
Microsoft documentation: Link
Last updated