OUR BLOG

Company News and Updates

Every week we share out expertise on effective strategies and technics to help you reach customers and prospects across the entire web.

Chapter108:CheckedandUnchecked

Section108.1:CheckedandUnchecked C#statementsexecutesineithercheckedoruncheckedcontext.Inacheckedcontext,arithmeticoverflowraisesan exception. In an unchecked context, arithmetic overflow is ignored and the result is truncated.…
Learn More

Chapter107:Indexer

Section107.1:Asimpleindexer classFoo { privatestring[]cities=new[]{"Paris","London","Berlin"}; publicstringthis[intindex] { get{ returncities[index]; } set{ cities[index]=value; } } } Usage: varfoo=newFoo();…
Learn More

Chapter106:Immutability

Section106.1:System.Stringclass InC#(and.NET)astringisrepresentedbyclassSystem.String.Thestringkeywordisanaliasforthisclass. The System.String class is immutable, i.e once created its state cannot be altered. SoalltheoperationsyouperformonastringlikeSubstring,Remove,Replace,concatenationusing+operatoretc…
Learn More

Chapter105:Polymorphism

Section105.1:TypesofPolymorphism Polymorphism means that a operation can also be applied to values of some other types.…
Learn More

Chapter104:ActionFilters

Section104.1:CustomActionFilters We write custom action filters for various reasons. We may have a custom action filter…
Learn More

Chapter103:AsynchronousSocket

Byusingasynchronoussocketsaservercanlisteningforincomingconnectionsanddosomeotherlogicinthe mean time in contrast to synchronous socket when they are listening they block the main…
Learn More

Get new blog posts by email: