|
|
@ -224,7 +224,8 @@ namespace CppSharp.Passes |
|
|
|
private static string GetPropertyName(string name) |
|
|
|
private static string GetPropertyName(string name) |
|
|
|
{ |
|
|
|
{ |
|
|
|
var firstWord = GetFirstWord(name); |
|
|
|
var firstWord = GetFirstWord(name); |
|
|
|
if (Match(firstWord, new[] { "get" }) && name != firstWord) |
|
|
|
if (Match(firstWord, new[] { "get" }) && name != firstWord && |
|
|
|
|
|
|
|
!char.IsNumber(name[3])) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (char.IsLower(name[0])) |
|
|
|
if (char.IsLower(name[0])) |
|
|
|
{ |
|
|
|
{ |
|
|
|