R
RicercatoreSbadato
What's happen exactly when I pass a Bitmap to a function in this way:
text_localization(EMP1);
public Bitmap text_localization( Bitmap EMP1 ) {}
??
It's the same thing to do this?
text_localization(ref EMP1);
public Bitmap text_localization( ref Bitmap EMP1 ) {}
text_localization(EMP1);
public Bitmap text_localization( Bitmap EMP1 ) {}
??
It's the same thing to do this?
text_localization(ref EMP1);
public Bitmap text_localization( ref Bitmap EMP1 ) {}