Project

General

Profile

Functions2.cs

'Native' assembly test 2. - Ovidiu Maxiniuc, 02/21/2014 03:46 PM

Download (377 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 Functions2
8
{
9
    public static long CSharp_Double_Int64(long x)
10
    {
11
        return Functions.CSharp_Add_Int64(x, x);
12
    }
13

    
14
    public static String CSharp_Double_String(String x)
15
    {
16
        return Functions.CSharp_Add_String(x, x);
17
    }
18
}
19