Popular Posts
SwiXml - Layout BorderLayout BorderLayoutPane.xml <?xml version="1.0" encoding="UTF-8"?> <panel layout="BorderLayout... Generate subversion diff report using python bash: svn --diff-cmd "python" --extensions "diff_to_html.py" diff -r 596:671 diff_to_html.py import sys import diff... LINQPad Office site : LINQPad others : LINQPad 有在用LINQ不可或缺的好工具
Stats
Change the AppDomain's Base Directory and Environment Directory
// Update AppDomain's Base Directory
string root_path = "c:\\temp\\";
AppDomain.CurrentDomain.SetData("APPBASE", root_path);

// Retrieve AppDomain's Base Directory
AppDomain.CurrentDomain.BaseDirectory.ToString()

// Update Environment's Current Directory
Environment.CurrentDirectory = root_path;