Rokker has quit [Quit: Connection closed for inactivity]
<Sigma88>
!c "Jebediah Kerman".GetHashCode()
<Qboid>
222555994
<Sigma88>
!c 25.GetHashCode()
<Qboid>
25
<Sigma88>
!c 25.ToString().GetHashCode()
<Qboid>
858359655
InfectedRaptor is now known as UmbralRaptor
Olympic1 has joined #Kopernicus
Olympic1 has quit [Quit: Nice talking to you]
egg|zzz|egg is now known as egg|afk|egg
<Sigma88>
!c new Expression("5+5*5")
<Qboid>
(1,6): error CS0246: The type or namespace name `Expression' could not be found. Are you missing `System.Linq.Expressions' using directive?
<Sigma88>
!c e = new Expression("5+5*5")
<Qboid>
(1,10): error CS0246: The type or namespace name `Expression' could not be found. Are you missing `System.Linq.Expressions' using directive?
<Qboid>
(1,2): error CS0103: The name `e' does not exist in the current context
<Sigma88>
>_>
<Sigma88>
!c Expression e = new Expression("5+5*5")
<Qboid>
(1,2): error CS0246: The type or namespace name `Expression' could not be found. Are you missing `System.Linq.Expressions' using directive?
<Sigma88>
!c Evaluate("5+5*5")
<Qboid>
(1,2): error CS0103: The name `Evaluate' does not exist in the current context
<Sigma88>
!c EvaluateExpression("5+5*5")
<Qboid>
(1,2): error CS0103: The name `EvaluateExpression' does not exist in the current context
<Sigma88>
hmpf
<Sigma88>
!c DataTable dt = new DataTable()
<Qboid>
(1,2): error CS0246: The type or namespace name `DataTable' could not be found. Are you missing an assembly reference?
<Sigma88>
!c System.Data.DataTable dt = new System.Data.DataTable()
<Qboid>
(1,9): error CS0234: The type or namespace name `Data' does not exist in the namespace `System'. Are you missing `System.Data' assembly reference?