I have a question on this code. what does the 1000L * 8L represents?

Example: bytesRec += networkInterfaces[i].GetIPv4Statistics().BytesReceived / 1000L * 8L;

Sorry new to here

Thank you

3

1 Answer

Suffixes specify number types. They instruct the C# compiler that an integral literal such as 1000 be considered a certain type of number—for example, a long (1000L)

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy