Hello. I have never tried programing before and I hate matematics so I don`t know if I am able to learn it but it would be very cool to make plugins for mediaportal.
So I tried to folow the guide but when I created a new project I got this code:
instead of this code from the guide:
Is this becouse I use visual studio 2005 and not 2003?
So I tried to folow the guide but when I created a new project I got this code:
Code:
using System;
using System.Collections.Generic;
using System.Text;
namespace ourplugin
{
public class Class1
{
}
}
instead of this code from the guide:
Code:
namespace OurPlugin
{
/// <summary>
/// Summary description for Class1.
/// </summary>
public class Class1
{
public Class1()
{
//
// TODO: Add constructor logic here
//
}
}
}
Is this becouse I use visual studio 2005 and not 2003?
Norway