(conditional) Multiple Event Handlers C#
- by gjk
A portion of my program requires a "flag" retrieval, that is I am fetching a value that is either True or False, and based on this return value two things could follow.
1) The flag is true, aka "go ahead", and I retrieve data from a database.
2) The flag is false, and I want to prevent the data from being retrieved.
Now, this check has to be…