What causes 'object reference not set to an instance of an object' in c#?
This is a null reference exception, indicating that you're trying to access a member of a null object.
Example:
string str = null;
int len = str.Length;
Solution:
string str = "Hello";
int len = str.Length;
Always ensure objects are initialized before accessing their members.