Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
14answers
1k views

When are C# “using” statements most useful?

So a using statement automatically calls the dispose method on the object that is being "used", when the using block is exited, right? But when is this necessary/beneficial? For example let's say ...
4
votes
2answers
320 views

css: display none. Is it expensive?

I decide to make read more... function by having two divs, and setting one of them display: none but in this case i store all the data twice. now the question - If I have one div element, with ...
1
vote
2answers
44 views

Is creating HttpClient expensive?

I had seen a few examples in Android implement maybeCreateHttpClient(), especially in Google sample, which it does is to check if HttpClient object is instantiated, if not, instantiate it, and reuse ...
1
vote
1answer
40 views

How expensive is it to set/read the disabled property in HTML form fields?

I am working on an application which has a lot of validations in the form: ... // oversimplified and abstracted away from the real code disableField: function() { var disable = ...