Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

37
votes
7answers
2k views

Why is Array.Length an int, and not an uint

Why is Array.Length an int, and not an uint. This bothers me (just a bit), because a length value can never by negative. This also forced me to use an int for a length-property on my own class, ...
34
votes
3answers
955 views

unsigned int (c++) vs uint (c#)

Following is the c# code: static void Main(string[] args) { uint y = 12; int x = -2; if (x > y) Console.WriteLine("x is greater"); else ...
7
votes
5answers
179 views

Use uint or int

Definitely, I know the basic differences between unsigned integers (uint) and signed integers (int). I noticed that in .NET public classes, a property called Length is always using signed integers. ...
5
votes
3answers
168 views

Using a typedef'd uint causes error, while “unsigned int” does not…?

For some reason, when I define a variable as "uint" instead of "unsigned int" in my program, it errors. This seems strange, because uint is typedef'd as: typedef unsigned int uint; ...so I would ...
4
votes
4answers
401 views

What is the best way to combine two uints into a ulong in c#

What is the best way to combine two uints into a ulong in c#, setting the high/low uints. I know bitshifting can do it, but I don't know the syntax, or there maybe other APIs to help like ...
3
votes
4answers
2k views

Get Unix timestamp with C++

How do I get a uint unix timestamp in C++? I've googled a bit and it seems that most methods are looking for more convoluted ways to represent time. Can't I just get it as a uint?
3
votes
3answers
534 views

difference between uint and unsigned int?

Is there any difference between uint and unsigned int? I'm looking in the site, but all question refers to C# or C++. I'd like an answer about C. Note that I'm using GCC under Linux
2
votes
3answers
643 views

Variable length encoding of an integer

Whats the best way of doing variable length encoding of an unsigned integer value in C# ? "The actual intent is to append a variable length encoded integer (bytes) to a file header." For ex: ...
2
votes
1answer
858 views

Converting uint color to argb hexadecimal for kml color

Good day everyone, I am stuck trying to convert a uint color value into its equivalent argb hexadecimal format. Basically, I am trying to convert a color from Flex(AS3) into its appropriate kml ...
1
vote
2answers
94 views

initialize this buffer uint8*

I have this typedef typedef unsigned char uint8; and this variable public : uint8* bufferOfExchange; how could I initialize this buffer? bufferOfExchange = ???
1
vote
1answer
537 views

Arithmetic operation resulted in an overflow in unsafe C#

Background We've been using some code copied verbatim from Joe Duffy's "Concurrent Programming on Windows" (page 149) in production for over a year. The code (below) is used in our Asp.Net web ...
1
vote
1answer
241 views

How to force PHP to treat a number like a uint

I have some C# code that looks like this: uint a = 0x9E3779B9; a += (uint)(url[k + 0] + (url[k + 1] << 8) + (url[k + 2] << 16) + (url[k + 3] << 24)); After that code, a == 228 452 ...
0
votes
2answers
113 views

Converting Uint16 to string in C

i'm trying to use SDL and read user input, for that I need to convert Uint16 to string, here is my code: if( event.type == SDL_KEYDOWN ) { if( strlen(str) ...
0
votes
1answer
161 views

C# How to represent (unsigned long)(unsigned int) (ulong)(uint) with XOR (^)

I'm converting C++ code to C# Say I got this in C++ int v5; v5 = (*(_DWORD *)(v4 + 68) ^ (unsigned __int64)(unsigned int)(*(_DWORD *)(v4 + 56) ^ *(_DWORD *)(v4 + 20))) % 9; In C# it would be ...
0
votes
1answer
92 views

Fastest way to get numerical value of the request's IP Address in ASP.NET

What would be the fastest way to get the numerical format (NOT THE STRING FORMAT) of the client? string format : 223.255.254.0 numeric format : 3758095872 I can postcompute this by some code like ...
0
votes
5answers
181 views

Multiplication and division on integers split into parts

Does anyone know where I might get instructions on how to do multiplication and division (and maybe even modulus) on integers that are stored in parts? im making a library that stores a uint128_t as ...
0
votes
1answer
60 views

properly printing out integers from 2 parts

I have a uint128_t class that stores its values as uint64_t UPPER, LOWER;, and im not sure how to overload the operator<< so that when i pass in std::cout, the value will print in decimal ...
0
votes
3answers
890 views

How to convert uint8[] to string?

Hi I am doing work on an iPhone application I am getting some response of server in my buffer with data type Uint8 now i want to Match my buffer with a string, can any body tell me how can i check it? ...
0
votes
2answers
389 views

Flash AS3: How do I return NaN or undefined while using integer datatypes?

I'm working on a function that takes the stage mouse coordinates in Flash AS3 and returns tile in a hex-grid below the cursor. I want the function to return NaN or undefined if the cursor is not on a ...
0
votes
7answers
797 views

C# convert string to uint

So, I have a string of 13 characters. string str = "HELLOWORLDZZZ"; and I need to store this as ASCII representation (hex) in a uint variable. How do I do this?
0
votes
2answers
222 views

Send a NSString with \0

I am trying to send a string terminated with \0 to a tcp socket but it seems the \0 does never reach its destination. Using this code: NSString* s=@"<b/> \0_"; uint8_t *buf = (uint8_t *)[s ...
0
votes
3answers
374 views

How can I force subtraction to be signed in Python?

You can skip to the bottom line if you don't care about the background: I have the following code in Python: ratio = (point.threshold - self.points[0].value) / (self.points[1].value - ...