Comprende el código de forma correcta previamente a usarlo a tu proyecto y si ttienes algo que aportar puedes decirlo en los comentarios.
Ejemplo: c# no es igual a
// != returns true only if its operands are not equal.// Otherwise it returns false.// Here is an example:int a =1;int b =2;if(a == b){
Console.WriteLine("A and b have the same value stored in them!");elseif(a != b)
Console.WriteLine("A and b do not have the same value stored in them!");// Running this script should give you this in the console:// A and b do not have the same value stored in them!// !!! UNITY USER READ THIS !!! UNITY USER READ THIS !!!// If you are using Unity game engine then you should// use Debug.Log() instead of Console.WriteLine() to write// something to the console.// Hopefully this helped you out!
Ten en cuenta compartir esta reseña si te fue útil.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)