13 lines
323 B
C#
13 lines
323 B
C#
using System.Reflection;
|
|
|
|
namespace Tapeti.Flow.FlowHelpers
|
|
{
|
|
public static class MethodSerializer
|
|
{
|
|
public static string Serialize(MethodInfo method)
|
|
{
|
|
return method.Name + '@' + method.DeclaringType?.Assembly.GetName().Name + ':' + method.DeclaringType?.FullName;
|
|
}
|
|
}
|
|
}
|