Search Results

1
vote

Accessing similar named properties in a loop

What's your reasoning for doing so? Is it to speed up development? You can use reflection as many have already suggested but it'd be much more effecient to simply reference the properties directly …
0
votes

Asynchronous Logging To A Database .Net

I would highly recommend looking into NLOG. It's very flexible and logs asynchronously. You can configure it to log to a specific file or D …
5
votes

What does “Object reference not set to an instance of an object” mean?

Not to be blunt but it means exactly what it says. One of your object references is NULL. You'll see this when you try and access the property or method of a NULL'd object. …