CharUpperBuff

[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
public static extern uint CharUpperBuff(
   [In,
   Out] IntPtr lpsz,
   uint cchLength
);

Microsoft documentation: Link

Last updated