CharLowerBuff

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

Microsoft documentation: Link

Last updated