On Oct 12, 2006, at 4:42 AM, Daniel Stenning wrote:

I can think of many more useful language additions than those mentioned.

++, -- += and C style templates for example.

As Aaron pointed out in his blog, you can imitate increment and decrement using Extends. It is not the same thing as operators, but it is something you can do right now and "looks" more like REALbasic.

Example:

  Dim myInt As Integer = 3

  myInt.Increment        // same as myInt++
  myInt.Add(5)           // same as myInt += 5
  myInt.Multiply(2.5)    // same as myInt *= 2.5
  myInt.Decrement        // same as myInt--


_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to