Visual Studio 2005 on Mac OS X
Here are some larger screenshots:
http://www.kriskrause.com/images/mac-vs-net-2005.jpg
http://www.kriskrause.com/images/mac-vs-net-2005-widgets.jpg (Widgets Overlay)
"If it is fast and ugly, they will use it and curse you; if it is slow, they will not use it."
- David Cheriton, The Art of Computer Systems Performance Analysis
Here are some larger screenshots:
http://www.kriskrause.com/images/mac-vs-net-2005.jpg
http://www.kriskrause.com/images/mac-vs-net-2005-widgets.jpg (Widgets Overlay)
To uninstall Mono on OS X utilize the uninstallMono.sh script. Where is it? How do you get it?
Utilize Finder to browse to /Library/Receipts. View the package contents of Contents/Resources/MonoFramework.pkg.
Drag a copy of uninstallMono.sh to the desktop. Open a Terminal window. Then cd desktop and run: sudo ./uninstallMono.sh and enter your password.
Mono on Mac OS X is then uninstalled (bin, Frameworks, etc.)using System;
namespace PlayListExample
{
class CMain
{
[STAThread]
static void Main(string[] args)
{
iTunesLib.IiTunes app = null;
try
{
app = new iTunesLib.iTunesAppClass();
foreach (iTunesLib.IITTrack track in app.LibraryPlaylist.Tracks)
{
Console.WriteLine("Artist: {0}\nSong: {1}\nGenre: {2}\n", track.Artist, track.Name, track.Genre);
}
}
catch (Exception e)
{
Console.WriteLine(e);
}
finally
{
app.Quit();
app = null;
Console.ReadLine();
}
}
}
}