As per our requirements we have a web service which internally connects
(Simple HTTP Post Request) to a remote server to initiate some work. We are
calling the web service method asynchronously from a .NET Web Application
hosted on IIS. In our setup the web request form a client can be running...
more >>
In the following code (over-simplified, of course), the generic method calls
itself recursively, quickly resulting in a StackOverflowException:
public T[] GetArray<T>( T value )
{
return GetArray( value );
}
public Array GetArray( object value )
{
return return new ArrayList().ToArray...
more >>