Guest User

Untitled

a guest
May 20th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class Array
  2.  
  3. def to_clr_arr
  4. arr = System::Array.CreateInstance self[0].class.to_clr_type, self.length.to_clr_int
  5. self.each_with_index { |r, i| arr[i] = r }
  6. return arr
  7. end
  8. end
Add Comment
Please, Sign In to add comment