|
|
-
|
|
Be aware when you read XML data from Microsoft SQL Server by using the **SqlDataReader** object or **ExecuteScalar** method of SqlCommand class, the XML in the first column of the first row is truncated at 2,033 characters. To resolve this problem, use ...
|
|
-
|
|
Yes, You can overload methods in a webservice using Message Attribute...
|
|
-
|
|
Visual Studio Ultimate editions have application design support using the “Architecture” menu in the Menu bar. In an Enterprise setup, it is often the case that a solution designer expresses intent of the solution using UML Class diagrams, Sequence Dia...
|
|
-
|
|
New feature "**Code Clone Analysis**" in introduce in Visual Studio 2012
You can find clones of specific code by selecting the segment you are interested then right click on the selection to choose Find Matching Clones in Solution from the context me...
|
|
-
|
|
Recently I needed to convert a float value to nearest integer...
I used Convert.ToInt32
The problem found with is it will convert decimal like 7.5,8.5 to nearest even integer
Convert.ToInt32(7.5)=>8
Convert.ToInt32(8.5)=>8 !!!
The solution f...
|
|
-
|
|
I just surfing on net i found link for UI updates cumming in Visual Studio 11 RC....
|
|
-
|
|
I just learn from mvc tutorial That we can comment code in Razor view engine also
This is syntax for comment code
Single line
@* single line comment. *@
Multiline
@*
Line1
Line2
Line3
*@
Thank You...
|
|
-
|
|
In Sharepoint, while creating feedback survey, its not possible to create a calculated column. A calculated column can be added to list. But same can't be added to a feedback survey. However, in reality navigational link to create calculated columns is ...
|
|
-
|
|
If you can create Regular class library it has a single target framework.if you want use in multi targeting platform application like Windows Phone 7, Silverlight, the Microsoft .NET Framework and Xbox 360 then that create a problem to reuse code.
Now ...
|
|
-
|
|
In .NET 4.5, .NET Framework team made two improvements to the large object heap. First, they significantly improved the way the runtime manages the free list, thereby making more effective use of fragments. Second, in Server GC Mode, the runtime balance...
|
|