Zero Toch nodes with the same name and different parameter doesn't work as expected

Hi,

I try to build zero touch nodes with a public static methods with the same name but different parameters. it works fine but for some cases doesn’t work (see example).
Ex:
public static string ToString(decimal a)
{
return a.ToString();
}
public static string ToString(Guid a)
{
return a.ToString();
}
i get one ToString node not two. how can i solve that?

Regards,

H.Moussa

Hi, I think you need rename your methods

public static string ToString_1(decimal a)
{
return a.ToString();
}
public static string ToString_2(Guid a)
{
return a.ToString();
}

Because here two nodes with same names and Dynamo can’t import both

Gerog,

Thanks for your reply. Dyanmo can load more than one node with the same name but different parameters. For example if you change the "decimal " in my example to “int”. Dynamo wil load the two nodes. The conflict here between “Guid” and “decimal”.