You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a template specification introduces a new property with an Enum return type, the generated code checks the ActingVersion and outputs "return null" if it is too low. This doesn't compile.
public AttribValue AttribValue
{
get
{
if (_actingVersion < 3) return null; // compile error
return (AttribValue)_buffer.Uint32GetLittleEndian(_offset + 0);
}
... setter
}