using System;
public class Program
{
public static void Main()
Console.WriteLine(System.IO.Path.Combine("/test/test2", "../test3"));
Console.WriteLine(System.IO.Path.GetFullPath(System.IO.Path.Combine("/test/test2", "../test3")));
}