TriEngine  v0.0.16
General-purpose engine in C#/OpenGL
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
TriDevs.TriEngine.Helpers.IO Class Reference

Provides various helper functions for doing IO operations. More...

Static Public Member Functions

static string GetAbsolutePath (string path)
 Resolves the absolute path from a relative path. More...
 

Detailed Description

Provides various helper functions for doing IO operations.

Member Function Documentation

static string TriDevs.TriEngine.Helpers.IO.GetAbsolutePath ( string  path)
static

Resolves the absolute path from a relative path.

Parameters
pathThe relative path to resolve.
Returns
The absolute path to the item.
39  {
40  return Path.Combine(Directory.GetCurrentDirectory(), path);
41  }

The documentation for this class was generated from the following file: