We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var setter = prop.GetSetMethod(); if (setter != null && setter.IsPublic) { if (prop.GetIndexParameters().Length > 0) { if (!prop.GetIndexParameters()[0].ParameterType.IsAssignableFrom(typeof(string))) { itemSetter.Add(setter); } } else { emitRegisterFunc(il, emitPropertyWrap(wrapTypeBuilder, prop, setter, false), Utils.SETTER_IDX, prop.Name); } }
Request for modification as below , also getter
var setter = prop.GetSetMethod(); if (setter != null && setter.IsPublic) { if (prop.GetIndexParameters().Length > 0) { if (prop.GetIndexParameters()[0].ParameterType.IsAssignableFrom(typeof(string))) { itemSetter.Add(setter); } } else { emitRegisterFunc(il, emitPropertyWrap(wrapTypeBuilder, prop, setter, false), Utils.SETTER_IDX, prop.Name); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Request for modification as below , also getter
The text was updated successfully, but these errors were encountered: