nullpointer
nullpointer
CC#
Created by nullpointer on 11/11/2024 in #help
how to delegate on static method
any help, please?
3 replies
CC#
Created by nullpointer on 5/31/2023 in #help
❔ System.MissingMethodException: Entry point not found in assembly
to make it public it not helps, but the interesting point is, on Windows there is no exception. But the code is not executed, i don't see the Hello World in the console Using breakpoint is also not working
8 replies
CC#
Created by nullpointer on 5/31/2023 in #help
❔ System.MissingMethodException: Entry point not found in assembly
hi, thanks for anwser, i swiched my dev env, one moment
8 replies
CC#
Created by nullpointer on 5/31/2023 in #help
❔ System.MissingMethodException: Entry point not found in assembly
How to define the entry point? I have a simple Program.cs class
using System;

class Program
{

static void Main(string[] args)
{
Console.WriteLine("Hello World");
}
}
using System;

class Program
{

static void Main(string[] args)
{
Console.WriteLine("Hello World");
}
}
8 replies
CC#
Created by nullpointer on 5/31/2023 in #help
❔ System.MissingMethodException: Entry point not found in assembly
here my launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "test",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/.godot/mono/temp/bin/Debug/gdUnit4Mono.dll",
"args": [],
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}
{
"version": "0.2.0",
"configurations": [
{
"name": "test",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/.godot/mono/temp/bin/Debug/gdUnit4Mono.dll",
"args": [],
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}
8 replies