Tagged in

Tips

theburningmonk.com
theburningmonk.com
the personal blog for Yan Cui
More information
Followers
923
Elsewhere
More, on Medium

F# — From string to byte array and back

There’re a number of built-in literal types in F#, and one of the cool things you can do is to get the byte or byte array representation of a char or string using the ‘B’ suffix, the result is the same as Encoding.ASCII.GetBytes:


.Net Tips — Finding GAC

By default the GAC folder in Windows is located at %windir%\assembly, you can find all the registered DLLs in that folder. Whilst you can open it in windows explorer and view it like any other folder, it is a somewhat special and allows you to have different versions of the same DLL…