1
0
mirror of synced 2024-06-25 22:07:39 +00:00
Tapeti/Tapeti.Flow/FlowHelpers/MethodSerializer.cs

13 lines
323 B
C#
Raw Normal View History

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;
}
}
}