Wenn ich es ohne using mache:
Code:
private void Form1_Load(object sender, EventArgs e)
{
Int32 i = HelloWorld.intTest();
}
Zitat:
Der Name "HelloWorld" ist im aktuellen Kontext nicht vorhanden.
Code:
public class HelloWorld : Object
{
// Methods
[MethodImpl(MethodImplOptions.NoInlining), LineNumberTable((ushort) 11)]
public HelloWorld();
public virtual int intTest();
public virtual int intTest2(int Value);
[MethodImpl(MethodImplOptions.NoInlining), Throws(new string[] { "java.lang.Exception" }), LineNumberTable(new byte[] { 0x9f, 0x9c, 0x6f })]
public static void main(string[] argv);
public virtual string strTest();
[MethodImpl(MethodImplOptions.NoInlining), LineNumberTable((ushort) 0x26)]
public virtual string strTest2(string s);
}
Und intTest sieht so aus:
Code:
public virtual int intTest()
{
return 0x2a;
}
Dumme Frage: Wie geht das mit den Namespace in Java? Ich habe eben in meinem dicken Buch geguckt, da taucht im Stichwortverzeichnis der Begriff Namespace nicht auf.