Blog that contains articles about new technologies related or not with programming.
I will describe and solves some problems that I encounter in my career.
ASP .NET, AJAX, Javascript, C++, C# and SQL are some of the subjects that will appear.
03 July 2014
Nullable datatype in c#
int? ins = null; ins = 4; if(ins.HasValue) { int a = ins.Value; }
No comments:
Post a Comment