by shigemk2

当面は技術的なことしか書かない

Converts the specified string to octal integer on F#

Convert.ToInt32 Method (String) (System)

> let x = System.Convert.ToInt32("13", 8);;

val x : int = 11

> let x = System.Convert.ToInt32("13", 16);;

val x : int = 19

> let x = System.Convert.ToInt32("e", 16);;

val x : int = 14