Tagged Questions

0
votes
4answers
126 views

What is the UInt32 data type in Visual Basic .NET?

What is the UInt32 datatype in VB.NET? Can someone inform me about its bit length and the differences between UInt32 and Int32? Is it an integer or floating point number?
0
votes
3answers
63 views

Objective C - Are SystemSoundID’s (typedef’d UInt32) automatically assigned 0?

- (void)playAlarmSound:(NSTimer *)theTimer { static SystemSoundID soundID/* = 0 */; // ? if (!soundID) { soundID = [Utilities createSystemSoundIDFromFile:@"beep" ofType:@"caf"]; } …
1
vote
3answers
596 views

How to pass uint in Java?

I'm trying to call SendMessage with an uint parameter from Java, but I can't convert int to uint. I can't change the uint parameter in SendMessage because it is a windows function. Is there some way …
0
votes
2answers
153 views

How to sort List<List<UInt32>> according to List<UInt32>[0] number ASC/DESC in C#?

Hi, How shall sort this in ASC order? I got List<List<UInt32>> full of records of List<UInt32> and I want those records to be sorted according to the first column in each record - …
2
votes
2answers
1k views

C# Problem using blowfish NET: How to convert from Uint32[] to byte[]

Hello, In C#,I'm using Blowfish.NET 2.1.3's BlowfishECB.cs file(can be found here) In C++,It's unknown,but it is similiar. In C++,the Initialize(blowfish) procedure is the following: void …
3
votes
4answers
519 views

How to map uint in NHibernate with SQL Server 2005

I have a property of type uint on my entity. Something like: public class Enity { public uint Count {get;set;} } When I try to persist that into the SQL Server 2005 database, I get an exception …
0
votes
7answers
571 views

In C# is there any significant performance difference for using UInt32 vs Int32

I am porting an existing application to C# and want to improve performance wherever possible. Many existing loop counters and array references are defined as System.UInt32, instead of the Int32 I …