Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
7answers
134 views

Should ToString be used for critical information?

I just came across some code that overrides ToString() and returns some critical information (not just debug information). Users of this type called ToString() and parse that critical data. My ...
6
votes
4answers
231 views

Best approaches for designing a well organised ASP.NET application with modularity

I am trying to think about a web application development framework for our product development. I want to build an ASP.NET application which has many sub modules in it. My requirements are like: ...
5
votes
3answers
103 views

Is it good/common sense programming practice to make all methods return a MyResult object in PHP?

Working through several layers of an MVC architecture designed program, I find that I would like to have more information on a deeper layer's method return result, and that it's not always that I can ...
4
votes
2answers
573 views

How should I implement session storage on node.js

I'm creating josi, a web framework for node.js. And I'd like to add session storage. What would be the best way to implement this? I'm assuming it probably has to be cookie based, but I'm interested ...
4
votes
2answers
1k views

Why are Array.Sort() and Array.IndexOf() methods static?

Always was interested why are Array.Sort() and Array.IndexOf() methods made static and similar ArrayList.Sort() and ArrayList.IndexOf() are designed as member methods. Thank you for any ideas.
1
vote
4answers
280 views

Ideas for good class name

How would you name a class with the following public interface: /// <summary> /// Enqeues and exectutes actions synchronously on seperated threads using the <see cref="ThreadPool"/>. ...
1
vote
4answers
784 views

ReSharper complains about uppercase “ID” in member “EntityID”

I have a property "EntityID" in a class. Resharper (5.1) says Name 'EntityID' does not match rule 'Methods, properties and events'. Suggested name is 'EntityId'. But IMHO according to the ...
0
votes
1answer
24 views

How would I propagate mouse and keyboard events in a UI framework?

I have finished the work on the render buffer and basic message pump of my console user interface framework, but now I have to propagate events to all the widgets (controls) on the screen. Apparently ...
0
votes
0answers
47 views

Creating a monotouch/droid-like framework

If I wanted to write a MonoTouch/Droid-like framework where a language like C# could be compiled to native bytecode, where/how would I start? What are the different things that would need to be done ...