Я вручную конвертирую код из Java в C #, и я не знаю, как конвертировать
private static int rosu = Color.Red.getRGB;
Я получаю эту ошибку:
'System.Drawing.Color' does not contain a definition for 'getRGB' and no extension method 'getRGB' accepting a first argument of type 'System.Drawing.Color' could be found (are you missing a using directive or an assembly reference?)
Я использую объявленный rosu
в этом контексте:
for (uy=0;uy<h;uy++)
for (ux=0;ux<w;ux++)
if(curba[uy][ux]==255)
curba[uy][ux]=rosu;
Спасибо