differences

VB.NET vs. C#.NET?

The company I work for has all of its legacy ("legacy" being used rather liberally in this context) code in VB.NET. They have about 6000+ lines of VB.NET code, so all of the developers are comfortable with it. We have started to develop a new product, and are finding that some modules are easier to complete in C# than in VB.NET, such as...

3G iphone touches less responsive than other devices?

Hi, I'm developing a game for the iPhone and I've noticed a difference specific to the 3G iPhone. I have been testing the software all 3 versions of the iPhone - 2G, 3G and 3GS. The 2G and the 3GS work the same, but I find on the 3G that the swipes and touches are much slower to respond. At first I thought it might just be a CPU issu...

What is the difference between client side testing versus server side testing when we are execute various tests such as white box or black box testing?

hi all, as per my question, i am wondering what differences are there when we are performing tests for the client side , as compared to performing tests on the client side? For example, testing javascript on the client side versus testing server side code? Best Regards. ...

Why is a CoreData forceFetch required after a delete on the iPad but not the iPhone?

When the following code is run on the iPhone the count of fetched objects after the delete is one less than before the delete. But on the iPad the count remains the same. This inconsistency was causing a crash on the iPad because elsewhere in the code, soon after the delete, fetchedObjects is called and the calling code, trusting the ...

C# .net updates versus compile time debugging. How to stop the oddities?

Are we reduced to ClickOnce to manage our application state for our users? We use our own installer and Visual Patch currently. When our users update using our Visual Patch download (we can reproduce this) we get errors from the updated versions which never show up in our dev enviroment. Since our developer state is not 'updated' wi...

Difference between '>>' and '>' in Perl

What is the difference between these two code snippets? open (MYFILE, '>>data.txt'); open (MYFILE, '>data.txt'); ...

Detect differences from html and css changes from live site

We have a webpage that can be hosted in an iframe on another site. When it's shown in another website we override the css to have the l&f of that site. What happens is when someone changes the css class name or properties in the webpage it might look bad on other site where it's hosted until we detect and change it. If there is a way...

Update on technical differences between C# and VB.NET

I have searched for these and can only find posts on 2008 or earlier? I have my own list, but I want to know if there are more? Vb.NET doesn't support implicit interfaces (this really is annoying:() Vb.NET doesn't support another setter protection than the getter on automatic properties Vb.NET doesn't support Preprocessor Directives V...

PHP Show Differences

I have two strings: $stringA = "1,2,3,4"; $stringB = "1,2,4,5"; I want to pick out the values from $stringB that are not in $stringA. How can I do that? ...

Finding Changed files in a ClearCase folder

I have a Folder in ClearCase that contains a large list of Reports. I have checked all the Reports out because I need to make a sweeping change. I have changed a set of the Reports and now want to deploy this set. I probably should have checked the Report files out one at a time and then deployed each as I finished. But, since I did n...

Diff between two instances of same class

I have two instances of the same class. I need to find property(s) which are different amongst them (basically value of the property, say firstName might be different in both). The fields are primitive, complex as well as collections. Basically, I need to find differences between two instances and if the fields are different in both the...

Moving from Classic ASP to ASP.net

Hi all! I've come from a Classic ASP background, done it for years and years and moving to .net has been way overdue, so I've started to learn .net. It's very different to say the least! It's structured a lot differently, and seems to work a lot differently, it's a huge leap upwards. However, it is appearing to me to be more and more...

Help Identifying If Specific Problem is a Classical Comp Science Problem

Hi All, I have a manufacturing-process issue I tackled ages ago in VBA, and it's held up for some time now although it's progressively running slower and slower as more data gets into the file. I think it's finally time to rewrite a more elegant solution in a different language, outside of VBA, but am curious if anyone knows of this be...

What is the difference between symbolic constant and macro in C?

I can only make out the similarities, not the differences.... ...

regarding C++ pointers

Difference between references and pointers and constant pointers in C++ ...