Wednesday, August 17, 2005
Testing a post from Word
Testing a post from Word to Blogger:
abstract class ProcessorWorker
{
protected string _url;
protected static string _results;
public ProcessorWorker()
{
}
public virtual void Run()
{
Console.WriteLine(string.Format("Results: {0}", _results));
Console.ReadLine();
}
}
Just a Test.
abstract class ProcessorWorker
{
protected string _url;
protected static string _results;
public ProcessorWorker()
{
}
public virtual void Run()
{
Console.WriteLine(string.Format("Results: {0}", _results));
Console.ReadLine();
}
}
Just a Test.