|
|
-
Krishnrajsinh Rana Liked 3 Months ago through Blogs
It is often a requirement to split a set of contiguous string into individual characters/letters. The below code will help us to do so
Declare @str Varchar(50) = 'abcde'
Select
Data = Substring(@str,Number,1)
From master.dbo.spt_val...
|
-
Krishnrajsinh Rana refreshed 3 Months ago through Blogs
It is often a requirement to split a set of contiguous string into individual characters/letters. The below code will help us to do so
Declare @str Varchar(50) = 'abcde'
Select
Data = Substring(@str,Number,1)
From master.dbo.spt_val...
|
-
Krishnrajsinh Rana Commented 3 Months ago through Blogs
Hi Jalpesh,
We can also achieve the same result using **LINQ's** extension method - **Aggregate**.
Following is a code for that.
string[] name = { "Jalpesh", "Vishal", "Tushar", "Gaurang" };
string commnaDelmietedName = name.A...
|
-
Krishnrajsinh Rana Commented 3 Months ago through Blogs
I have tried to do same thing in the past using reflection. but i have not used LINQ and lamda expression.
Your code is really very clear and concise.
Thanks Niladri...plz keep it up......
|
|
|
|
|
|
|
-
Krishnrajsinh Rana Liked 3 Months ago through Blogs
Every UIElement in WPF is derived from DispatcherObject which defines a property called Dispatcher that points to the UI thread. A dispatcher is used to raise calls on another thread. Dispatcher can also be called as a class that h...
|
-
Krishnrajsinh Rana Liked 3 Months ago through Tutorials
This article explains what SQL Server Reporting Services are and how to install it in Windows Server 2008...
|
|
|