David Anton wrote:
> I'm new to IronPyton (and Python in general).
> Where can I find a good reference or spec for IronPython?
>
> I'd like to find information on whether the following is available in
> IronPython (google has been of limited help so far in the following
> searches):
> - conditional compilation
> - attributes (e.g., System.SerializableAttribute)
>   
Attributes are not supported at the moment.
> - properties
>   
class Label:
    Length = property(lambda self : len(self.__text))
    Text = property(__getText, __setText)

    def __getText(self):
       return self.__text

    def __setText(self, value):
       self.__text = value


_______________________________________________
users mailing list
users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to