hi.. I really don't understand a lot of this C# classes stuff. I only did JScript before. Anyway I started reading and I just can't get this code to work. What's wrong with the classes? (this is kind of a repost but no answers helped me in the previous)
using System;
using Microsoft.CSharp;
class DeclareArraysSample
{
public static void Main() {
string[] codeS = new string[9];
string[] nameS = new string[9];
codeS[0] = "using System;";
codeS[1] = "class DeclareArraysSample";
codeS[2] = "{";
codeS[3] = " public static void Main()";
codeS[4] = " {";
codeS[5] = " byte[][] Nos = new byte[11][];";
codeS[6] = " Console.WriteLine('Nos-length: {0}',Nos.Length);";
codeS[7] = " };";
codeS

= "};";
nameS[0] = "Line 0";
nameS[1] = "Line 1";
nameS[2] = "Line 2";
nameS[3] = "Line 3";
nameS[4] = "Line 4";
nomes[5] = "Line 5";
nameS[6] = "Line 6";
nameS[7] = "Line 7";
nameS

= "Line 8";
CompilerError[] ANSWR = Compiler.Compile(codeS,nameS,"sdCOMPILADO.exe",nul l,null);
}
}