Project

General

Profile

Functions.cs

'Native' assembly test 1, dependence of Functions2. - Ovidiu Maxiniuc, 02/21/2014 03:46 PM

Download (344 Bytes)

 
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

    
7
public class Functions
8
{
9
    public static Int64 CSharp_Add_Int64(Int64 p1, Int64 p2)
10
    {
11
        return p1 + p2;
12
    }
13

    
14
    public static String CSharp_Add_String(String p1, String p2)
15
    {
16
        return p1 + p2;
17
    }
18
}
19