I do this walkthought:
http://quickstarts.asp.net/Futures/dlr/doc/dlsharedcode.aspx
but when I change some code ,want to get Upper string, but my code is not
working
my code is:

class SampleClass:
   "Sample class with one property"
   def __init__(self):
       self.__testString = ""
   def SetTestString(self, value):
       self.__testString = value.upper()
   def GetTestString(self):
       return self.__testString
   TestString = property(GetTestString, SetTestString)
or

class SampleClass:
   "Sample class with one property"
   def __init__(self):
       self.__testString = ""
   def SetTestString(self, value):
       self.__testString = str(value).upper()
   def GetTestString(self):
       return self.__testString
   TestString = property(GetTestString, SetTestString)

or

class SampleClass:
   "Sample class with one property"
   def __init__(self):
       self.__testString = ""
   def SetTestString(self, value):
       self.__testString = value
   def GetTestString(self):
       return self.__testString.upper()
   TestString = property(GetTestString, SetTestString)
--
Once in a Redmoon
_______________________________________________
users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to