|
|
-
Vamshi Answered 2 Years ago through Quizzes
Option 2 is the equivivalant .
Option 2 will increment the actual variable....
|
-
Vamshi Answered 2 Years ago through Quizzes
Option 2 is the equivivalant .
Option 2 will increment the actual variable.
The ++ operator in C# increments the value being passed to it as well as returns a value....
|
-
Vamshi Answered 2 Years ago through Quizzes
The output is 6,4,2 and exception is thrown
As per MSDN deferred execution is
***" The immediate return value is an object that stores all the information required to perform the action. The query represented by this method is not executed until th...
|
-
Vamshi Answered 2 Years ago through Quizzes
Tips before you use
1. If you add a DeploymentCatalog without passing any Uri, it will, by default, parse the contents of the current active XAP, so that is always a "default" catalog to add to the aggregate one to grab the current parts
2. When y...
|
-
Vamshi Answered 2 Years ago through Quizzes
Styles in Silverlight are a powerful mechanism that allow controlling the visual representation of elements in a unified way for all user interface elements. The concept is similar to using CSS to control the look and feel of HTML.
Styles are list of...
|
-
Vamshi Answered 2 Years ago through Quizzes
The DLR is the new API in .NET Framework 4 that is responsible for implementing dynamic programming, and is common runtime for the dynamic languages. The C# runtime is built on the top of the DLR in order to give provision for the dynamic typing.
The...
|
-
Vamshi Answered 2 Years ago through Quizzes
**XmlSerializer**
**Advantages:**
1. We don’t need to specify each and every property to serialize, Specify only those we don’t want to serialize
2. We have Full control over how a property is serialized irrespective of a node or an attribute
...
|
-
Vamshi Answered 2 Years ago through Quizzes
•Asynchronous programming is extremely easy and intuitive with async {}-expressions - Even with ParallelFX, the corresponding C#-code is much bigger.
•Very easy integration of compiler compilers and domain-specific languages
•Extending the langua...
|
-
Vamshi Answered 2 Years ago through Quizzes
This can be done using URL Routing or ASP.NET MVC Framework.
MVC Framework only will have HTML No view state, No Page Life cycle concept, No Controls in this framework. Hence its faster and more poular. Its based on MVC architecture.
Controllers are...
|
-
Vamshi Answered 2 Years ago through Quizzes
Gunter got it correct
Alternatively I guess we can also use databinding . The following snippet works for me
<Grid>
<WrapPanel Orientation="Vertical">
<TextBox Name="TextBlock1" Width="100" Text="{Binding...
|