#No I tried creating the property in my

1 messages · Page 1 of 1 (latest)

uncut kernel
#

Can you provide some of the code?

#

Can you provide some of the code?

runic iron
#

Going to read up a bit more on properties, I am feeling like I am missing something. Sounds like it should work.

uncut kernel
#

can you provide a snippet? Properties are just methods disguised as fields.

#
int MyInt { get; set; }

is the same as:

int _myInt;

int GetMyInt() {
return _myInt;
}

void SetMyInt(int value) {
_myInt = value;
}
#

That's what it looks like when you decompile it