Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
734 views

C# int, Int32 and enum's

If int is synonymous to Int32 why does enum MyEnum : Int32 { Value = 1 } ...not compile? Where as enum MyEnum : int { Value = 1 } will, even though hovering the cursor over the int word ...
4
votes
2answers
2k views

c# isn't a Int64 equal to a long?

I have been playing around with SQL and databases in C# via SqlCeConnection. I have been using ExecuteReader to read results and BigInt values for record ID's which are read into Longs. Today I ...
4
votes
3answers
601 views

Int to byte array

I thought .net had some kind of easy conversion method to use for converting an int into a byte array? I did a quick search and all solutioins are bit masking/shifting one byte at a time, like "the ...
4
votes
8answers
242 views

int or uint or what

Consider this int i = 2147483647; var n = i + 3; i = n; Console.WriteLine(i); // prints -2147483646 (1) Console.WriteLine(n); // prints ...
3
votes
5answers
122 views

Return type of numpy.minimum()?

When I use the numpy functions minimum() and maximum() on boolean arrays, the type of the result prints as numpy.int32. However, a comparison with the numpy.int32 type fails (even after a cast). Is ...
3
votes
6answers
347 views

Determine if a decimal can be stored as int32

I am doing some custom serializing, and in order to save some space, i want to serialize the decimals as int, if possible value wise. Performance is a concern, since i am dealing with a high volume of ...
2
votes
4answers
266 views

Convert.ToInt32(float) fails when trying to convert float to Int32

No exception is thrown, function just halts at this statement: int productQuantity = Convert.ToInt32("1.00"); and returns. What am I doing wrong to convert this float to Int32? Note: I am ...
2
votes
3answers
2k views

What is the int.MaxValue on a 64-bit PC?

System.Console.WriteLine(int.MaxValue); This line gives me the answer of 2147483647 as I have a 32-bit PC. Will the answer be same on a 64-bit PC?
1
vote
2answers
33 views

In ASP.Net, what is the best way to store int in system.web.caching?

Currently, I have to convert int to string and store in cache, very complex int test = 123; System.Web.HttpContext.Current.Cache.Insert("key", test.ToString()); // to save the cache test = ...
1
vote
1answer
94 views

64bit DLL works in VB.net but not in VBA

I have a 64 bit DLL which I want to use in VBA. The example from VB.net won't work in VBA as Int32 is not a known VBA data type. Is it possible to get this working in VBA? If so, do I have to write ...
1
vote
10answers
221 views

Why can't I pass a large value as an Int32?

I have a number: 94,800,620,800 Float is 4-byte data-type. Int32 is also 4-byte data-type. float f = 94800620800; // ok Int32 t = 94800620800; // error Please explain this problem. Why I get a ...
1
vote
2answers
46 views

Is it safe to assume an Integer will always be 32 bits in VB.Net?

Related: Is it safe to assume an int will always be 32 bits in C#? The linked question asks whether it is "safe to assume that an int will always be 32 bits in C#". The accepted answer ...
1
vote
5answers
288 views

Difference between int and System::Int32

As I'm writing applications using C++ .NET framework I want to ask a question. When I am writing code exactly for "for loop" I always use this style of coding: for( int i=0; i<somevalue; ++i ) { ...
1
vote
1answer
222 views

Are there any issues with int32_t to NSInteger casting?

I am creating a bitmask for the iOS using the data type int32_t. This is then set to a variable that accepts an NSInteger. This throws no compile time errors as expected, but I was wondering - is ...
1
vote
5answers
429 views

Double parse with culture format

I have a double number as string. The number is 202.667,40 Which is 202667.4 How can I parse this string to get the value like: Double.Parse("202.667,40",?what here), or any other method to ...
1
vote
1answer
802 views

Solve:Value was either too large or too small for an Int32

I am passing query string and the url is as follows-> http://localhost:1086/Web/EditMobile.aspx?sno=2. But when i try to enter the url as ...
1
vote
2answers
148 views

Apparently it's important to use Int32 instead of int when messing with DLLImport stuff?

In C#, when messing with that system DLLImport/(unmanaged?) code stuff, I read somewhere it's important to use Int32 exact type instead of int. Is this true? And can someone please elaborate on why ...
1
vote
8answers
788 views

Min and Max value of integral type in C#

Whats the mathematical formulae to calculate the MIN and MAX value of an integral type using your calculator. I know you can use Integer.Max or Integer.Min etc or look it up on msdn however I want to ...
1
vote
1answer
442 views

Ascii Bytes Array To Int32 or Double

I'm re-writing alibrary with a mandate to make it totally allocation free. The goal is to have 0 collections after the app's startup phase is done. Previously, there were a lot of calls like this: ...
1
vote
4answers
1k views

What is the difference between Int32 and UInt32?

What is the difference between Int32 and UInt32? If they are the same with capacity range capabilities, the question is for what reason UInt32 was created? When should I use UInt32 instead of Int32?
1
vote
7answers
1k 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 ...
1
vote
3answers
409 views

Translating Int32 into ushort and back again

I am attempting to devise a system for packing integer values greater than 65535 into a ushort. Let me explain. We have a system which generates Int32 values using an IDENTITY column from SQL Server ...
0
votes
2answers
48 views

“value was not in a correct format” error when converting a string to an int32

this is my code; string a="11.4"; int b,c; b=2; c= convert.toint32(a) * b I get this error; Input string was not in a correct format how can i convert "a"?
0
votes
1answer
56 views

indexof on 64 vs 32 bit pc

i'm using the line below to find a position of the test withing HTML document and it works fine on a 64bit machine but does not work on my 32bit Windows 2008 server. IntStart1 variable returns 2 on ...
0
votes
2answers
129 views

Is it possible to define an int32 value in javascript console?

Do I understand right that it is impossible to define and store an int32 value in the mongodb javascript console? So if I want to do so a have no choice but to write a program in Java or other ...
0
votes
3answers
194 views

C#. How come when I use TextReader.Read() it returns an int value? Possible to convert to char?

So TextReader.ReadLine() returns a string, but TextReader.Read() returns an int value. This int value also seems to be in some sort of format that I don't recognize. Is it possible to convert this ...
0
votes
3answers
126 views

Weird issue with casting substring to integer

I'm getting a weird issue with substringing. Apparently the string I get can't be cast into an Int32 for some odd reason. The error message I get when I try doing that is "input string is not in ...
0
votes
1answer
155 views

How can convert System::Int32 to wchar_t*

I have this piece of code: int casted_dbValue=3; wchar_t* nativeData=(wchar_t*)casted_dbValue; it is incorrect conversion between int to const wchar_t*. How can deal with this error?
0
votes
0answers
482 views

LinqDataSource SessionParameter Operator '==' incompatible with operand types 'Int32' and 'Object'

I set sessionState mode="InProc" timeout="1800" in web.config On Login.aspx protected void Button1_Click(object sender, EventArgs e) { Session["UserID"] = TextBox1.Text; ...
0
votes
3answers
2k views

Visual C++ 2010 -> Window Form. How to convert string to int?

Hey! I have textBox with text like "12:30" and this code textBox -> Text -> ToString() -> Split(':')[1] It return "30" as string. And I want convert it to Int. How? I founded function like ...
0
votes
1answer
444 views

WPF: System.Windows.Int32Rect ---> System.Windows.Int32Point?

You know how System.Drawing.Rectangle was replaced by System.Windows.Int32Rect? (As far as non-floating-point shapes are concerned ...) Is there a similar new object for an integer point or size? ...