Is there any way I can nullify an object after having created it in a more generic sense rather than specifying its specific name.
e.g. 'object one = new object()' can be nullified by 'one = null',
instead of this I want something along the lines of 'this = null' in the constructor or introduce some break in the constructor to stop an object being created if a criteria is not met.
How can I go about doing this?