Compiler Warning (level 4) C4434
konstruktor kelas harus memiliki aksesibilitas privat; mengubah ke akses privat
C4434 menunjukkan bahwa kompilator mengubah aksesibilitas konstruktor statis. Konstruktor statis harus memiliki aksesibilitas privat, karena hanya dimaksudkan untuk dipanggil oleh runtime bahasa umum. Untuk informasi selengkapnya, lihat Konstruktor statis.
Contoh
Sampel berikut menghasilkan C4434.
// C4434.cpp
// compile with: /W4 /c /clr
public ref struct R {
static R(){} // C4434
};