GentleMen,
I read Somewhere That it is possible to Add Delete Or edit into a programm in real time
While it is running or a programm can write itself but it was not told how
could someone please demostrate asimple example for that. FOr instance
using System;
using Sytem.Reflection;
using ....
namespace EditWhileRunning
{
public class EditIt
{
public int AddTwoNumbers ( int Num1 , Int Num2 )
{
return Num1 + Num2 ; // could the + sign be changed to - Sign
// While Running or how can
// one write a Method for
// substration whiel on the fly
}
}//end class
}//end namespace
Thankyou
RIGHT_THEN
RightthenPosted Apr 28, 2008, 11:15 AM
Sir Mr. Vijaya
While in Debug mode You Mean With "Bare Hands" ( That i Know!!!)
Or Programmatically
Could you Demostrate it please
Thankyou
RIGHT_THEN
Vijaya KadiyalaPosted Apr 27, 2008, 11:46 AM
Hi,
This you can do only if you are running in debug mode.
Thanks -- Vj