[MonoDevelop] simple program .... but can't show errors
Galchin, Vasili
vigalchin at gmail.com
Mon Dec 22 00:31:54 EST 2008
// Program1 - This is the minimum code you'll have when you
// start most console programs.
// The only required using statement is the first, for System.
// The Console.WriteLine and Console.Read lines are code that
// you need to add to keep the console window open long enough
// so you can view the results of running your program.
// See Chapter 1 for the "Toolbox trick" that makes it easy
// to add these lines to your programs without a lot of typing.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Program1
{
class Program
{
static void Main(string[] args)
{
// Your code goes here.
// Wait for user to acknowledge the results.
Console.WriteLine("Press Enter to terminate...");
Console.Read();
}
}
}
I get "two errors" ... but left clicking, right clicking doesn't show what
errors. Sigh!!! Ubuntu Linux ...
Regards, Vasili
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ximian.com/pipermail/monodevelop-list/attachments/20081221/883bfe5d/attachment.html
More information about the Monodevelop-list
mailing list