Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
764 views

Can T-SQL store ulong's?

I want to store a C#.NET ulong into a T-SQL database. I don't see any provisions for doing this, as the SQL bigint has the same Min/Max values as a normal long. Is there any way I can do this? Or is ...
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 ...
1
vote
2answers
372 views

Converting raw-byte values into Java types

I have a problem with converting raw-bytes values into java types. I am receiving bytes by a datagram socket as a bytes array. I know exactly which bytes means what, but I don't know how to convert ...
1
vote
1answer
398 views

C# System.Threading.Tasks.Parallel.For on ulong

In C#, theres a System.Threading.Tasks.Parallel.For(...) wich does the same as a for-loop, without order, but in multiple threads. The thing is, it works only on long and int, I want to work with ...
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
4answers
3k views

C#: How to convert long to ulong

If i try with BitConverter,it requires a byte array and i don't have that.I have a Int32 and i want to convert it to UInt32. In C++ there was no problem with that.