How to write better user stories (Instructor led workshop)
Lean Agile , Manchester is hosting its User Group meet on the topic “How to write better user stories (Instructor led workshop)” at Valtech , Basil Chambers. 65 High Street. M4 1FS, Manchester on...
View ArticleRecommended Books to Learn Angular 2 by @abundantcode
There are plenty of resources and books available online to learn Angular 2 and TypeScript. Apart from the online resources Angular 2 eBooks and Physical copy of the books too add to a greater learning...
View ArticleIT/Dev Connections – Call for Content Launches for IT/Dev Connections 2017!
IT/Dev Connections have officially opened the call for Content for IT/Dev Connections 2017. IT/Dev Connections is scheduled to be held from October 23 to 26 , 2017 at San Francisco , CA. The conference...
View ArticleUG Meet – Azure Functions and DocumentDB in Manchester on March 7 , 2017
Dotnet North User Group Manchester is hosting its User Group meet on March 7 , 2017 at RISE Manchester RISE Manchester, 231 – 235 Deansgate, M3 4EN, Manchester from 7 PM. During the meetup , Mark Allan...
View ArticleHow to get the Total Number of Items in an Enum in C# ?
You can get the total number of items defined in an enum in C# using the combination of the Enum.GetNames method and the Length property. How to get the Total Number of Items in an Enum in C# ? The...
View ArticleNancyFX 2.0 + Dapper = Happy Path at Leeds on Feb 23 , 2017
LeedsSharp is hosting its User Group meetup on Thursday, February 23, 2017 from 6:30 PM at Future Labs , 1 Eastgate LS2 7LH, Leeds. This session covers the topic on NancyFX 2.0 + Dapper where Joe...
View ArticleGetting CI Right for SQL Server & A Whirlwind tour of DBCC CHECKDB at Birmingham
Microsoft Data Platform Group – Birmingham is hosting its user group meet on the topic Getting CI Right for SQL Server & A Whirlwind tour of DBCC CHECKDB on Thursday, March 9, 2017 at 6:15 PM....
View ArticleHow to calculate difference between two dates in C# ?
There are times when you might to calculate the difference between two days in C# and get the number of days as result. How to calculate difference between two dates in C# ? Assuming both the start...
View ArticleHow to read the entire contents of a file to a string variable in C# ?
There are several ways in which you can read a text file in to a string variable in C#. One of the simple ways to achieve it is using the ReadAllText method of the File class. How to read the entire...
View ArticleF# Recipe #1 – Display Odd Numbers between 0 and 100 in Console Window
Problem You need to write a F# program to display odd numbers between 0 and 100 in the console window. F# Program to display odd numbers between 0 and 100 in the Console Window. open System let main...
View ArticleF# Recipe #2 – The type int is not compatible with type unit
Problem When writing your first F# program , you get the following error “The type int is not compatible with type unit”. You need to fix this. Solution The type unit is F#’s version of void. This...
View ArticleF# Recipe #3 – program to find if the number is positive or negative
Problem Write a program in F# to find if the given number is a positive or negative number. F# program to find if the number is positive or negative. // Learn more about F# at...
View ArticleHow to Change the Start Page of the Xamarin Forms Application ?
By default , when you create a new Xamarin Forms application in Visual Studio , it creates a MainPage.xaml in the portable (PCL) project and this is set as the start page of your android and iOS...
View ArticleUsing Conditional Compilation in Xamarin Shared Project for iOS
There are times when you might want to perform an action that is specific to a device in the Xamarin Shared Project. For example , assume that you have to set the string named title within the Xaml...
View ArticleMissingMethodException ‘Xamarin.Forms.Device.get_RuntimePlatform’ in...
There are times when you might get the System.MissingMethodException ‘Xamarin.Forms.Device.get_RuntimePlatform’ when working with the Xamarin.Forms application and using the method...
View ArticleHow to return JSON instead of XML in ASP.NET Web API when using Chrome ?
When using the ASP.NET Web API in Google Chrome , there are times when you see the XML output instead of JSON. You might want to request JSON data so that you can view it in the browser. How to return...
View ArticleWhat’s wrong with this WP7 Code ?
Here’s a sample code that i was trying for databinding the AutoCompleteBox in Windows Phone 7 . I was trying to bind a custom object to the AutoCompleteBox and ended up looking at the code for nearly...
View ArticleTelerik RadControls for Windows Phone – Article #1 – Introduction and...
RadControls for WP7 from Telerik enables the Windows Phone developers to create beautiful and powerful Windows Phone Apps easily. RadControls for Windows Phone offers additional controls and its...
View ArticleHow to find if the Application is returning from Dormant or Tombstoned State...
In Windows Phone Mango, when the App is deactivated, it puts the App into the dormant state. This state provides the Fast Switching support where the App is still in memory… When the App returns from...
View ArticleQ&A #11 – What are the basic shapes available for WP7 Development ?
What are the basic shapes available for WP7 Development? Line Ellipse Rectangle Polyline Polygon Path
View Article