// ----- AsdkintToCString._test command (do not rename)
static void AsdkintToCString_test(void)
{
// Add your code for command AsdkintToCString._test here
int a = 5;
double b = 1.25;
CString str;
str.Format("%d", a);
acedAlert(str);
str.Format("%.2f", b);
acedAlert(str);
}