Friday, January 8, 2016

Serialization in .Net

The OOB binaryserializer does not work in some cases for no apparant reason, while searching on net I came across this serializer library which could help solve many problems

https://github.com/mgravell/protobuf-net

No comments:

Regex Email validation in c# dot net core

 Use this regex /^_?[a-zA-Z0-9]([a-zA-Z0-9]*[._+-])*[a-zA-Z0-9_]+@(?!-)[A-Za-z0-9-]{1,63}(?<!-)(\.(?!-)[A-Za-z0-9-]{1,63}(?<!-))*\.[A-...