Skip to content
Snippets Groups Projects
Commit 22a61601 authored by Sven Gestegård Robertz's avatar Sven Gestegård Robertz
Browse files

small fix in user_types c# example

parent 2345511f
Branches
Tags
No related merge requests found
...@@ -54,9 +54,14 @@ namespace user_types ...@@ -54,9 +54,14 @@ namespace user_types
Console.WriteLine("b: "+d.b); Console.WriteLine("b: "+d.b);
} }
public void handle(int d) void theFirstInt.Handler.handle(int d)
{ {
Console.WriteLine("Got int: "+d); Console.WriteLine("Got theFirstInt: "+d);
}
void theSecondInt.Handler.handle(int d)
{
Console.WriteLine("Got theSecondInt: "+d);
} }
static void Main(string[] args) static void Main(string[] args)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment