Links to chew on
Scott Hanselman posts a video of Jon Lam speaking at the Portland Area .net Users Group (padnug). Downloading now.
Scott Hanselman also posts on upgrading projects to the new drops of silverlight.
Javier Lozano walks everyone through some simple type inheritance with the limitations of the pre-alpha.
I continue to learn more about the underlying framework, but need a task. So I’m going to try to implement attr_accessor in IronRuby. attr_accessor is a favorite syntactical sugar of mine in ruby. It takes
-
-
private int _somethingID;
-
public int SomethingID
-
{
-
get { return _somethingID; }
-
set { _somethingID = value; }
-
}
and turns it into
-
-
attr_accessor :something_id
Meta programming at it’s best.. I was able to find this link that describes his adventures in implementing attr_accessor, which led me to this great post on implementing DSLs. Ruby implements attr_accessor in C, but this seems like a prime candidate for managed code.
Edit : Lofty goals without doing enough research up front.. Gotta pick some lower hanging fruit..
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
August 2nd, 2007 at 4:58 am
[…] I posted on my desire to port over attr_accessor, which I’m realizing is a lofty goal for myself, but […]
November 12th, 2008 at 7:53 pm
t0hcd3fnyfsst1vi