|
|
-
|
|
Basically String Split function split the string with the single character delimiter; we take one example of single string of the multiple emails. If we have comma separated emails then we can use Split function as like belowstring strEmailText = "abc.a...
|
|
-
|
|
Few days ago I get very tedious job in database,I have to search all stored procedure which have use one particular table.I get following 1 option of query from sys table of sqlserverSELECT ROUTINE_NAME, ROUTINE_DEFINITION FROM INFORMATION_SCHEMA.ROUTIN...
|
|
-
|
|
In my current company we have discussion about what is the difference between LINQ to SQL Vs Entity Framework and I get following conclusion from the surfing from internet (off course from google. :) )
LINQ to SQL supports one to one mapping of d...
|
|
-
|
|
Key differences between IPv4 and IPv6.IPv4IPv6Source and destination addresses are 32 bits (4 ytes) in length.Source and destination addresses are 128 bits (16 bytes) in length.IPsec header support is optional.IPsec header support is required.No identif...
|
|
-
|
|
The following list summarizes the features of the IPv6 protocol:
1) New header format
2) Large address space
3) Stateless and stateful address configuration
4) IPsec header support required
5) Better support for prioritized delivery
6) New protocol for neighboring node interaction
7) Extensibility...
|
|
-
|
|
In sql query if we want to get one random row form the whole set of
data we get from NEWID() in select statement's order by clouse as like
below.Select top 1 * from Customers where IsActive = 1 order by newid()What if we are using ORM like linq?We can...
|
|
-
|
|
I face very strange thing with IsNumeric() function in sql
select IsNumeric('1234D234')select IsNumeric('123A123')
Both query have alphanumeric value and both give different answer. very strange.
After a long time spent on google i get solution. We can ...
|
|
-
|
|
Console.WriteLine(a));}Out Put: 2 5 7Hope this will helps you, Thanks....
|
|
-
|
|
When one process take so much long time and UI thread needs to stay
responsive while process is running, the most common method to place a
long running process on a separate thread.In WPF there are mostly use technique is Backgroundworker. Background...
|
|
-
|
|
Some day ago, when i build my project i get unexpected error.
Error 3 The "CreateRiaClientFilesTask" task failed unexpectedly.
System.Web.HttpException (0x80004005): Could not load file or assembly 'FileHelpers.DataLink' or one of its dependencies. Acc...
|
|