Here's an example:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SharpLibrary_MediaManager
{
public class Picture:BaseFile
{
public override void GetFileInformation()
{
throw new NotImplementedException();
}
public override void GetThumbnail()
{
throw new NotImplementedException();
}
}
}
Why are those auto-generated for me and what purpose do they serve? I'm very curious. :)