Domande taggate «uint»

3
Comportamento di overflow C # per uint non selezionato
Ho testato questo codice su https://dotnetfiddle.net/ : using System; public class Program { const float scale = 64 * 1024; public static void Main() { Console.WriteLine(unchecked((uint)(ulong)(1.2 * scale * scale + 1.5 * scale))); Console.WriteLine(unchecked((uint)(ulong)(scale* scale + 7))); } } Se compilo con .NET 4.7.2 ottengo 859091763 7 Ma se …
10 c#  .net  overflow  roslyn  uint 
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.