Rokker has quit [Quit: Connection closed for inactivity]
egg|zzz|egg is now known as egg|nomz|egg
<Sigma88>
!c "abcd".FirstIndexOf("bc")
<Qboid>
(1,9): error CS1061: Type `string' does not contain a definition for `FirstIndexOf' and no extension method `FirstIndexOf' of type `string' could be found. Are you missing an assembly reference?/usr/lib/mono/4.5/mscorlib.dll (Location of the symbol related to previous error)
<Sigma88>
!c "abcd".IndexOf("bc")
<Qboid>
1
<Sigma88>
!c x = "abxxxcde"
<Qboid>
(1,2): error CS0103: The name `x' does not exist in the current context
<Sigma88>
!c string x = "abxxxcde"
<Sigma88>
!c x.SubString(0,2) + x.SubString(5)
<Qboid>
(1,4): error CS1061: Type `string' does not contain a definition for `SubString' and no extension method `SubString' of type `string' could be found. Are you missing an assembly reference?/usr/lib/mono/4.5/mscorlib.dll (Location of the symbol related to previous error)
<Sigma88>
!c x.Substring(0,2) + x.Substring(5)
<Qboid>
abcde
<Sigma88>
!c x.Substring(0,0) + "4"
<Qboid>
4
<Sigma88>
!c x.Substring(2,3)
<Qboid>
xxx
egg|nomz|egg is now known as egg
Rokker has joined #Kopernicus
egg is now known as egg|zzz|egg
ferram4_ has quit [Read error: Connection reset by peer]