c# Programming Glossary: touches
Why does .ToString() on a null string cause a null error, when .ToString() works fine on a nullable int with null value? http://stackoverflow.com/questions/11446838/why-does-tostring-on-a-null-string-cause-a-null-error-when-tostring-works a value yet it does give me the exception. This question touches on it the guy is essentially asking the same thing but there..
How should I handle my Entity/Domain Objects using IoC/Dependency Injection? http://stackoverflow.com/questions/1405665/how-should-i-handle-my-entity-domain-objects-using-ioc-dependency-injection
C#: Memory usage of an object http://stackoverflow.com/questions/555929/c-memory-usage-of-an-object mean how much memory does this object and everything it touches take up. Your point about string interning is a good example...
In C#, why can't I modify the member of a value type instance in a foreach loop? http://stackoverflow.com/questions/5650705/in-c-why-cant-i-modify-the-member-of-a-value-type-instance-in-a-foreach-loop is a reference to an object. As such it never actually touches any of the object's members and couldn't care less about them...
Is it possible to let my c# wpf program know if the user has a touchscreen or not? http://stackoverflow.com/questions/5673556/is-it-possible-to-let-my-c-sharp-wpf-program-know-if-the-user-has-a-touchscreen Only detect if it is a touch Screen not how many touches i.e. Single touch or Multi touch if tabletDevice.Type TabletDeviceType.Touch..
Properties vs Methods http://stackoverflow.com/questions/601621/properties-vs-methods that is most general and comprehensive but that also touches on the example that I have given. c# properties methods share..
Path.Combine absolute with relative path strings http://stackoverflow.com/questions/670566/path-combine-absolute-with-relative-path-strings simple canonicalization. Check out Path.GetFullPath which touches the file system and possibly System.Uri. share improve this..
|