How to split a delimited string to multiple rows using MSSQL
To split a delimited string to multiple rows using MSSQL you can use the snippet below. Sample MSSQL
All the Code Snippets and Samples you need
To split a delimited string to multiple rows using MSSQL you can use the snippet below. Sample MSSQL
To Display an Image in Devexpress XtraGrid Control using C# and VB.NET see the example below. Sample C# Sample VB.NET Result
to delete .svn files and folders using Windows Batch Script you can use the following snippet. Sample Windows Batch Script Replace C:\Users\CodeSnippets.Fesslersoft.de\Documents\Visual Studio 2013\Projects\ConsoleApplication with your Solution’s Path.
What is the difference between typeof(), GetType() and is? typeof() takes a type name specified at compile Time. GetType() gets the Type of an Object at runtime is returns true…
To add or remove a class on hover using jQuery you can use the snippet below. Adding a Class See this JSFiddle for adding a CSS-Class. Removing a Class See…
To get current Domain of the PC in C# and VB.NET you can use the snippet below. Sample C# Sample VB.NET
To retrieve a IEnuemerable of all types in the current or another Assembly that implement a specific Interface / Abstract class and so on, you can use the snippets below.…
To get the class of an element using jQuery you can use the snippet below.
Here you can find a generic Type conversion snippet for C# and VB.NET. Sample C# Sample VB.NET
To open a Website in the default Browser in C# and VB.NET you can use the snippet below. Sample C# Sample VB