Question 242. Can Non-default Constructors Be Used With Single Call Sao?
Non-Default constructors can not be used with single call objects as object is created with every method call, there is no way to define Non-default constructors in method calls. It’s possible to use Non-Default constructor with Client activated objects as both methods "NEW" keyword and "Activator.CreateInstance" provide a way to specify Non-Default constructors.