Yeah I am pretty sure that there is some property or configurtation missing. Actual probelm is that intellisence is listing default classes, properties, identifers etc. But the class which I declare on script editior while in running mode is not listed in intellisence.
using System;
namespace ConsoleApplication1
{
class MyClass
{
static void Main(string[] args)
{
Hello he = new Hello(); <- Hello Class is not listed in Intellisence
}
}
class Hello
{
public void MyHello()
{
Console.WriteLine("I am in MyHello");
}
}
}
Would you please send me the procedure of utilizing actipro syntax editor. The sample included in purchasal is very enrich in functionality casuing difficulty for me to understand.