- Регистрация
- 28.05.2012
- Сообщения
- 72
- Благодарностей
- 32
- Баллы
- 18
Hello,
as many other ZennoPoster users I'm not a coder and I decided to start learning C# in order to use it in my templates ...
Would somebody help me how to run my first C# lesson in ZennoPoster?
or the same code here:
This code is working in Visual C# 2010 but in ZennoPoster I receive only errors
I have added GAC Reference to System.dll but the Error is the same.
as many other ZennoPoster users I'm not a coder and I decided to start learning C# in order to use it in my templates ...
Would somebody help me how to run my first C# lesson in ZennoPoster?
Код:
using System;
namespace HelloCSharp2
{
class HelloCSharp2
{
static void Main()
{
Console.WriteLine("Hello CShapr!");
}
}
}
Код:
using System;
class HelloCSharp2
{
static void Main()
{
Console.WriteLine("Hello CShapr!");
}
}
I have added GAC Reference to System.dll but the Error is the same.