10 lines
222 B
C#
10 lines
222 B
C#
namespace SyntaxGenerator
|
|
{
|
|
public static class DtoExtensions
|
|
{
|
|
public static string GetPrivateFieldName(this FieldDescription field)
|
|
{
|
|
return "_" + field.FieldName;
|
|
}
|
|
}
|
|
} |