imports the printf function : Windows API « Windows « C# / C Sharp






imports the printf function

   

using System;
using System.Runtime.InteropServices;

public class Starter {
    public static void Main() {
        int val1 = 5, val2 = 10;
        API.printf("%d+%d=%d", val1, val2, val1 + val2);
    }
}

public class API {
    [DllImport("msvcrt.dll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)]
    public static extern int printf(string formatspecifier, int lhs, int rhs, int total);
}

   
    
  








Related examples in the same category

1.DLL: GetVersionEx
2.Keyboard timer: GetTickCountKeyboard timer: GetTickCount
3.BitBlt
4.Get the Total Free Space on a Drive by using kernel32.dll
5.imports three functions to display the vertical and horizontal size of the screen.
6.MessageBox from user32.dll
7.Get OS Version from kernel32.dll
8.import CreateDirectory and FormatMessage
9.marshals string for unmanaged memory as ANSI.
10.imports the GetModuleHandleW function specifically
11.Set mouse and keyboard hooks.
12.Sound Utils
13.Returns the HRESULT associated with the given error code.