diff options
author | Melanie | 2010-10-03 16:52:27 +0100 |
---|---|---|
committer | Melanie | 2010-10-03 16:52:27 +0100 |
commit | 5910be236f62c22fb3d044652d69b0c39c35ffe0 (patch) | |
tree | 7f0c18f7f107b2fd88a34e8f97fa2faab3a2d4f4 /OpenSim/Framework/Util.cs | |
parent | Merge branch 'master' into careminster-presence-refactor (diff) | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC-5910be236f62c22fb3d044652d69b0c39c35ffe0.zip opensim-SC-5910be236f62c22fb3d044652d69b0c39c35ffe0.tar.gz opensim-SC-5910be236f62c22fb3d044652d69b0c39c35ffe0.tar.bz2 opensim-SC-5910be236f62c22fb3d044652d69b0c39c35ffe0.tar.xz |
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Framework/Util.cs')
-rw-r--r-- | OpenSim/Framework/Util.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index b66d826..f1d622e 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -92,6 +92,17 @@ namespace OpenSim.Framework | |||
92 | public static FireAndForgetMethod FireAndForgetMethod = FireAndForgetMethod.SmartThreadPool; | 92 | public static FireAndForgetMethod FireAndForgetMethod = FireAndForgetMethod.SmartThreadPool; |
93 | 93 | ||
94 | /// <summary> | 94 | /// <summary> |
95 | /// Gets the name of the directory where the current running executable | ||
96 | /// is located | ||
97 | /// </summary> | ||
98 | /// <returns>Filesystem path to the directory containing the current | ||
99 | /// executable</returns> | ||
100 | public static string ExecutingDirectory() | ||
101 | { | ||
102 | return Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); | ||
103 | } | ||
104 | |||
105 | /// <summary> | ||
95 | /// Linear interpolates B<->C using percent A | 106 | /// Linear interpolates B<->C using percent A |
96 | /// </summary> | 107 | /// </summary> |
97 | /// <param name="a"></param> | 108 | /// <param name="a"></param> |