[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Templates in Ruby

Harshad Wankhede

9/10/2008 12:25:00 PM

Hi,
I have a created a dll using c# .net. I am trying to access this dll
using rubyclr. Templates are to be passed as parameters to this dll to
return a specific object.


window.Get<Button>(SearchCriteria.ByText("buttonname"))

Where Button is the template which is to be passed to get the button object
Following is the button definition

public virtual T Get<T>(SearchCriteria searchCriteria) where T : UIItem
{
return (T) Get(searchCriteria.AndControlType(typeof (T)));
}


Where T is the template.

Does anyone know how to pass this template Button using ruby so that i
can access the dll using ruby.
Does Ruby support templates.
-Harshad