Hi All!
I have written code which uses very extensively DateTime.ParseExact()
function to read ascii financial data streams. Unfortunately I have
discovered that major bottleneck in my app lies in these function calls.
After converting this to simple Int32.Parse() and doing some most basic
al...
more >>
I am somewhat proficient (very generous statement) in coding simple
ASP.NET applications and manipulating datasets, datatables via ADO.NET;
however, I am by no means an expert on what occurs behind the scenes and
what performance considerations should be taken while creating an
application. ...
more >>
Hello
I have a performance issue, here's the code:
class mybase
public virtual void p(param string[] x)
{}
class a1 : mybase
public override void p(param string[] x)
{
do something...
base.p(x);
}
class b2 : mybase
public override void p(param string[] x)
{
do something...
bas...
more >>
Hi All,
I am posting this question again because earlier
I didn't get any answer.
When we run any VB.NET application, it takes a lot
of time to load. When we double click on the exe,
it takes some good amount of time even for showing
main window of the application.
...
more >>