Click here to Skip to main content
15,893,588 members
Articles / Programming Languages / C#

Visual studio 2012 Fakes

Rate me:
Please Sign up or sign in to vote.
4.96/5 (86 votes)
11 Nov 2013CPOL14 min read 159K   2.5K   129  
In this article we will make a deep dive into VS 2012 Fakes.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyMathsLibrary
{
    public class CustomMaths
    {
        public int Number1 { get; set; }
        public int Number2 { get; set; }

        public CustomMaths(int num1, int num2)
        {
            Number1 = num1;
            Number2 = num2;
        }
        public int Add()
        {
            return Number1 + Number2;
        }
        public int Sub()
        {
            return Number1 - Number2;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder Just Compile
India India
Learning is fun but teaching is awesome.

Who I am? Trainer + consultant + Developer/Architect + Director of Just Compile

My Company - Just Compile

I can be seen in, @sukeshmarla or Facebook

Comments and Discussions