הערה
גישה לעמוד זה דורשת אישור. אתה יכול לנסות להיכנס או לשנות תיקיות.
גישה לעמוד זה דורשת אישור. אתה יכול לנסות לשנות מדריכים.
Only index into arrays using constant expressions.
See also
Example
int getSomeIndex();
void function(int* p, int count)
{
p[getSomeIndex()] = 0; // C26482, Only index into arrays using constant expressions
}