verycsharpedge.blogspot.com
Very CSharp Edge: Visual Studio 2013 IDE
http://verycsharpedge.blogspot.com/2013/09/visual-studio-2013-ide.html
Learn about C# and the .Net framework. Stuff that matters. Monday, September 2, 2013. Visual Studio 2013 IDE. Visual Studio 2013 IDE. In this episode, Robert is joined by Cathy Sullivan, who shows us some of the many enhancements to the Visual Studio 2013 development environment, including:. Signing into the IDE to synchronize your settings [00:40]. Improvements to overall look and feel [11:30]. Auto brace completion [16:00]. Enhanced scroll bar [18:45]. Improved Navigate To experience [20:00]. TWC9: ID@...
verycsharpedge.blogspot.com
Very CSharp Edge: C# 12 - Multidimensional Arrays - Multiplication Table
http://verycsharpedge.blogspot.com/2011/10/c-12-rectangular-arrays-multiplication.html
Learn about C# and the .Net framework. Stuff that matters. Friday, October 28, 2011. C# 12 - Multidimensional Arrays - Multiplication Table. Manage and share your stuff. Sign up now for FREE! 1 Create a new console project. 2 Edit the Program.cs inside static void Main(string[] args) file as shown below. 11,11]; for. X = 1; x 11; x ) multiplicationTable[i, x] = i * x; Console. I = 1; i 11; i ) { Console. Write(i.ToString().PadRight(3) " ". WriteLine( "- - - - - - - - - - - - - - - - - - - - - - ". Meestu...
blog.bufferapp.com
Idea to Paying Customers in 7 Weeks: How We Did It
https://blog.bufferapp.com/idea-to-paying-customers-in-7-weeks-how-we-did-it
Our Journey to great productivity, more transparency and a happier work culture. Thoughts on social media and online marketing. A blog about development, APIs and being an engineer at Buffer. Get started with Buffer. Get started with Buffer. Idea to Paying Customers in 7 Weeks: How We Did It. Written by Joel Gascoigne. Last updated 5 years ago. This is the first of an ongoing series of posts called Building Buffer. A twinkle of an idea. Keeping version 1 minimal. No, more minimal than that. The result of...
verycsharpedge.blogspot.com
Very CSharp Edge: January 2013
http://verycsharpedge.blogspot.com/2013_01_01_archive.html
Learn about C# and the .Net framework. Stuff that matters. Tuesday, January 15, 2013. C# 19 – String manipulation – Stuff you could do with C# strings. Manage and share your stuff! See what stuff other people have. Welcome to another tutorial from verycsharpedge! I this tutorial we will learn about the different stuff. You could do with C# strings. We will look into the following methods/properties:. OK, Let’s Begin! Create a new console project. Add this line of code inside of main. WriteLine( "- Using ...
verycsharpedge.blogspot.com
Very CSharp Edge: C# 15 - Selection sort
http://verycsharpedge.blogspot.com/2012/06/c-15-selection-sort.html
Learn about C# and the .Net framework. Stuff that matters. Thursday, June 28, 2012. C# 15 - Selection sort. Implementing a sort using selection sort algorithm. 1 Create a new console project. 2 Edit the Program.cs inside static void Main(string[] args) file as shown below. Static void Main(string[] args). Int[] array = { 3, 2, 1, 4, 8 };. Console.Write("Before sort: ");. Console.Write("After sort : ");. Private static void SelectionSort(int[] sortArray). Int smallest = 0;. Int smallestIndex = 0;. Manage ...
verycsharpedge.blogspot.com
Very CSharp Edge: C# 6 - – What If? Or, Else If....?
http://verycsharpedge.blogspot.com/2011/09/c-6-what-if-or-else-if.html
Learn about C# and the .Net framework. Stuff that matters. Sunday, September 18, 2011. C# 6 - – What If? Or, Else If? 1 Create a new console project. 2 Edit the Program.cs file as shown below. WriteLine( "What is your most favorite sweet stuff? Write( "Enter your choice: ". WriteLine( "Chocolate, chocolate, chocolate! WriteLine( "Candy, candy, candy! WriteLine( "Lollipop, lollipop, lollipop! WriteLine( "Sugar, sugar, sugar! WriteLine( "Honey, honey, honey! WriteLine( "Cake, cake, cake! Tech blog about C#.
verycsharpedge.blogspot.com
Very CSharp Edge: Jason Shah, Product Manager, Yammer
http://verycsharpedge.blogspot.com/2013/09/jason-shah-product-manager-yammer.html
Learn about C# and the .Net framework. Stuff that matters. Tuesday, September 3, 2013. Jason Shah, Product Manager, Yammer. Jason Shah, Product Manager, Yammer. Some of his popular blog posts include product teardowns of Airbnb, Mailbox, and Waze. Original Link: http:/ channel9.msdn.com/Shows/BizSpark/Jason-Shah-Product-Manager-Yammer. Subscribe to: Post Comments (Atom). Tech blog about C#. There was an error in this gadget. C# 12 - Multidimensional Arrays - Multiplication Table. C# 15 - Selection sort.
verycsharpedge.blogspot.com
Very CSharp Edge: TWC9: Windows 8.1 RTM's, VS Unit Test Generator, more Azure GA's and more
http://verycsharpedge.blogspot.com/2013/09/twc9-windows-81-rtms-vs-unit-test.html
Learn about C# and the .Net framework. Stuff that matters. Monday, September 2, 2013. TWC9: Windows 8.1 RTM's, VS Unit Test Generator, more Azure GA's and more. TWC9: Windows 8.1 RTM's, VS Unit Test Generator, more Azure GA's and more. Original Link http:/ channel9.msdn.com/Shows/This Week On Channel 9/TWC9-August-30-2013. Subscribe to: Post Comments (Atom). Tech blog about C#. There was an error in this gadget. C# 12 - Multidimensional Arrays - Multiplication Table. C# 13 - Collections - Todo List.
verycsharpedge.blogspot.com
Very CSharp Edge: C# 13 - Collections - Todo List
http://verycsharpedge.blogspot.com/2011/11/c-13-collections-todo-list.html
Learn about C# and the .Net framework. Stuff that matters. Thursday, November 24, 2011. C# 13 - Collections - Todo List. 1 Create a new console project. 2 Edit the Program.cs to look like as shown below. System.Collections.Generic; using. System.Linq; using. System.Text; namespace. WriteLine( "= = = = = = = = = = = = = =". WriteLine( "Welcome to your Todo List.". WriteLine( "= = = = = = = = = = = = = =". WriteLine( "[1] Show Todo List". WriteLine( "[2] Add a new Todo". WriteLine( "[3] Delete a Todo".