tags:

views:

70

answers:

1
+3  A: 

i'll give you small hint. all C-like constructs and operators go as is, other:

  • strlen - String.Length
  • substr - String.Substring
  • . - +, .= - +=
  • chr(c) - (byte)c
  • ord(i) - (char)i
Andrey
Thanks nudge in the right direction!
arbme