mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 07:01:38 +03:00
18 lines
427 B
C#
18 lines
427 B
C#
using System;
|
|
|
|
namespace MicroIoc
|
|
{
|
|
public static class PatternExtensions
|
|
{
|
|
public static string PropertyPattern(this Type type, string memberName)
|
|
{
|
|
return type.FullName + "." + memberName;
|
|
}
|
|
|
|
public static string ConstructorParamPattern(this Type type, string memberName)
|
|
{
|
|
return type.FullName + "#" + memberName;
|
|
}
|
|
}
|
|
}
|