Caller Info Attributes is a new feature in C# 5.0, Caller Info Attributes instructs the compiler to obtain and feed information into the parameter’s default value. You can tag optional parameters using Caller Info Attributes. Three Caller Info Attributes are [CallerMemberName] – It applies the caller’s member name [CallerFilePath] - It applies the path to the caller’s source code...
Application Lifecycle Management in Visual Studio 11
This post discusses about new Application Lifecycle Management features in Visual Studio 11. Application Lifecycle Management represents how do you prioritize your requirement, how do you breakdown them into tasks and how do you implement those tasks. Start with the Requirements, Visual Studio 11 coming up with new tool PowerPoint Storyboarding which you can use for visualise your...
Comparing Two Generic Lists in C#
Today I come across the problem while comparing two different lists. The basic requirement is finding the records which are present in one list but not in other and vise versa. I thought of sharing this piece of code which might help for you to do the same task. Let us take the two Generic lists named timeEntryList and caseDataList. The aim is comparing these two lists and bring the results...
Creating Parallel Workflow in SharePoint 2010
This post explains how to create parallel tasks in SharePoint 2010 workflow. The idea is we are going to assign the tasks to people and they can complete them in any order without having a dependency on one another. In this example we create a custom SharePoint list which contains a vacation request details looks as below The Request contains a title field which represents the type of...
Displaying Custom HTML message in SharePoint 2010
This post explains about displaying a custom HTML message in Visio Web access web part on a SharePoint web part page. We are using two web parts content editor webpart and Visio Web access webpart as shown below
Accessing Web Services from Sandboxed Silverlight application in SharePoint 2010
This post discuss about accessing public web services from sandboxed Silverlight application in SharePoint 2010. SharePoint 2010 introduced the concept of sandboxed solution where the application runs in separate process outside the w3p process where SharePoint is running. Sandboxed solutions having the restriction to make a call to external resources like database and web services. This...
Windows Azure–Security essentials
This post discusses about Security essentials which technical decision maker should know in-order to protect customers applications and data in Windows Azure platform. Instead you building the server racks and datacenters, Cloud takes your traditional data centers from you and run on their premises which greatly reduces the cost and maintenance. Cloud runs as services platform follows the...
SQL Azure vs SQL Server
This post discusses the differences between SQL Azure and SQL Server in the context of security Supports SQL(native) and Windows authentication. Supports SQL(native) only, no windows authentication...
Heterogeneous Development using Visual Studio 2010
Your organization might have .NET and Java developers working on different platforms to develop the applications. Each development team might have been using different processes to develop the application. With this separation, Organisations have no end-to-end visibility on the development efforts. With Visual Studio 2010 this separation become a thing of past. Visual Studio 2010 ultimate...
Creating Code UI Tests in Visual Studio 2010
This post discusses about creating a test case for windows application in both Microsoft Test Manager and using a Code UI Test in Visual Studio 2010. It also discuss about editing a Code UI test by adding assertions into the UI map using UI controller.
1. Before creating test case we will create small windows application notepad.