Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Continuing with the series "Hidden features" I think it's time to Oxygene. I believe that's a great way to encourage the development of delphi prism, is that we all share what we discovered in the daily use of this great language.

alt text

Bye.

share|improve this question
Imo, this should be a community wiki as there isn't one definitive answer. – jamiei Nov 17 '09 at 12:41

4 Answers

up vote 6 down vote accepted

Auto-notifying properties.

This:

type Foo = public class
  public property Name : String; notify;
end;

Is equivalent to this in C#:

public class Foo : INotifyPropertyChanged, INotifyPropertyChanging {
  private string _name;

  public event PropertyChangingEventHandler PropertyChanging;
  public event PropertyChangedEventHandler PropertyChanged;

  protected OnPropertyChanging(PropertyChangingEventArgs e) {
    if (PropertyChanging != null) {
      PropertyChanging(this, e);
    }
  }

  protected OnPropertyChanged(PropertyChangedEventArgs e) {
    if (PropertyChanged != null) {
      PropertyChanged(this, e);
    }
  }

  public string Name {
    get { return _name; }
    set {
      if (value != _name) {
        OnPropertyChanging(new PropertyChangingEventArgs("Name"));
        _name = value;
        OnPropertyChanged(new PropertyChangedEventArgs("Name"));
      }
    }
  }
}
share|improve this answer
3  
+1, this is awesome! – Jeroen Wiert Pluimers Sep 11 '10 at 7:08

Most definitely interface delegation, it's the part I miss the most in C#.

I tried to explain it a bit more detailed in this prismwiki article

Or that one can constrain generic type parameters to be Enums or Delegates. (Which C# simply won't allow)

There's more to it, obviously. But the other useful features it has over C# are already all over the marketing stuff from RO and CG. So not really hidden. ;-)

share|improve this answer
+1 This feature is really amazing. There's one thing though. I created two interfaces with the same method and implemented then in a class via delegation to find out what would happen in case of collisions. The compiler silently used the definition from the first field. I see this as a problem. What do you think? – Jordão Sep 10 '10 at 17:01
You can, and should IMO, tell the compiler which member implements which one of which interface. IOW: method Abc; implements IInterface1.SomeMethod;method Def; implements IInterface2.SomeMethod; You can ask a new question on Stackoverflow if you want more detailed infos. Comments don't scale well. ;-) – Robert Giesecke Sep 13 '10 at 7:33
1  
I created a post about the shortcomings of this feature. – Jordão Jun 22 '11 at 17:03
Sorry, but you didn't seem to not have a full understanding of that feature and what it tries to accomplish. Abstract classes can have non-virtual members which would be impossible to delegate in a sane way. And you can delegate all but some members, by using the implements keyword on those members that shouldn't get delegated. – Robert Giesecke Jun 27 '11 at 7:18
@Robert Giesecke: I see what you mean. Thanks for pointing out that you can resolve conflicts through single member implements, but you have to create the delegating code manually. Also, you still can't use abstract classes directly or create specializations that can be called by the delegated-to class (which would be virtual). Of course, all the limitations that I mentioned can be overcome, but not by using this feature alone. – Jordão Jun 28 '11 at 12:40
show 1 more comment

First of all: Class contracts. It's on the Oxygene language since it was still called Chrome and will find it's way into C# only with the upcoming release of .NET 4.0.

Then it's the parallel support & future variables. Just by using declarations you can order to execute certain methods in background threads.

Last, but not least, I love the AOP feature 'Cirrus'. Actually it's used for AOP, but I see it more as an interface to write plugins for the compiler that will be executed on defined locations in your code.

share|improve this answer

The (minor) feature i love most in Oxygene is the colon operator. It cab be used just like "." to invoke members, but automatically checks for nil and shortcuts any expression to nil (potentially converting the result into a nullable, if necessary. for example:

var x := Something:Parent:Parent; // safely get the grandparent, if present.

or

if MyList:Count > 0 then ... // check for empty OR nil list.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.