.Net Framework is a Software framework developed by Microsoft that runs primarily on Windows. .Net provides includes a large class library called Framework Class Library(FCL) . Programs written in for .net framework execute in software environment named Common Language runtime(CLR) - an application virtual machine that provides services such as security, memory management , and exception handling . Code written using .NET Framework is called " Managed Code ". FCL and CLR together constitute .NET Framework. FCL provides user interface , data access , database connectivity , cryptography , web application development, numeric algorithms , and network communications .Net Compact Framework – A reduced version of framework is available is available on Windows CE platforms like smartphones . .NET Micro Framework is targeted at very resource-constrained embedded devices....
Hi All, I will be listing small problems with solutions in this post. This way it's easy for me and ajy of you reading this to get a solution quickly 1. How to split a string by another string: Solution 1: var result= "StringToBeSplit".Split(new string[] { "To" }, StringSplitOptions.None); Solution 2: We can write a extension method: public static string[] Split(this string toSplit, string splitOn) { return toSplit.Split(new string[] { splitOn }, StringSplitOptions.None); }
Comments
Post a Comment