let m = Regex.Match(X.Text, \"\\\\b(select)|(where)|(from)\\\\b\", RegexOptions.IgnoreCase) it highlights only Select , so I guess the trouble is in my Regex.Match syntax, but I can\'t see where ?
I\'m trying to learn F# and was watching a video when something odd 开发者_C百科(at least, to me) came up. The video in question is here and the relevant part starts at 2:30 for those interested. But
Prototypical code in C#: if(obj1 is ISomeInterface) { do_something } Code in F# that doesn\'t compile: match obj1 with
Hey folks, I have the following piece of code from C++. for (int i=0; i < nObstacles; i++) { int x,y;
I recently asked this question: Replay Recorded Data Stream in F# and combined that code with a subset of the functionality I found here:
I\'m trying to do a simple many-to-one relationship in EF and have defined it like: type Car() = [<DefaultValue>] val mutable private id : int
I am trying to write something 开发者_开发百科like this [(x,y)|x<- [1,2,3], y <- [’a’,’b’]]
Is it possible to set the DataLoadOptions on a data context in F#? S开发者_JAVA技巧o far I have had no luck because the DataLoadOptions.LoadWith() takes a System.Linq.Expressions.LambdaExpression whic
After reading a 2 year开发者_JAVA百科 old webpage really ripping fslex/fsyacc, buggy, slow, stupid etc. compared to their OCamel counterparts i wonder what would be ones best bet for lexing parsing ne
From what I can find, seems like the IsolatedStorage supposed to be permanent unless the user delete it manually. And the following thread says so too: