Jan 29, 2020

GOOGLE CHROME SHORTCUTS


internet shortcuts GOOGLE CHROME SHORTCUTS Shortcut Function Ctrl + O To open any data/file in internet search engines Ctrl + N To open new internet window not tab Ctrl + Shift + N To open new internet window with black background Ctrl + T To open new tab Ctrl + F4 To close the open tab Ctrl + W To close the internet search engine Alt + F4 Alt...

STRING BUILDER C# (sting vs string builder)


stringbuilder c# STRING BUILDER C#  “StringBuilder is class which is used to store the string data. String builder is mutable in sense we can done modification on string builder” Syntax = StringBuilder sb = new StringBuilder (“string”);             It also a class but it is use in such a condition we have to change the string frequently. In string builder whenever you instance/...

Jan 28, 2020

C# Keywords and Meaning


C# KEYWORD AND ITS MEANING BASICs  c# keywords Keyword Meaning Console. WriteLine To print Console. Readline To accept/take values Console .ReadKey To accept/take values/character void When method return nothing null To declare any string null means string having no character. int To declare an integer variable             (...

Jan 26, 2020

EXTENSION METHOD IN C#


c# extension method C# EXTENSION METHOD             “The mechanism of adding new method in an existing class and also a structure without changing the source code of original class is called extension method. In this process we don’t need any permission of the original class to modify it”. This feature is not available in visual version that less than 3.0. in c#.net the extension method represent...