We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38e8b7b commit 22f3db3Copy full SHA for 22f3db3
Templates/Android/BaseModel.template.tt
@@ -671,12 +671,13 @@ public {1} {2}{3}{4} {{";
671
";
672
foreach (var p in parameters)
673
{
674
- var propertyType = p.IsCollection ? string.Format("List<{0}>", ParamType(p)) : ParamType(p);
675
- sb.AppendFormat(format,
+ sb.AppendFormat(
+ format,
676
ParamName(p).SplitCamelCase(),
677
ParamName(p),
678
ParamType(p),
679
- p.SanitizePropertyName().ToLowerFirstChar());
+ p.SanitizePropertyName().ToLowerFirstChar()
680
+ );
681
}
682
return sb.ToString();
683
0 commit comments