Split Scheduler class into two files, one containing only the static time source management code (which I might decide to put somewhere else after all); added an option for users of the scheduler to query the scheduler's time source; fixed typo

git-svn-id: file:///srv/devel/repo-conversion/nusu@191 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2010-03-03 20:47:45 +00:00
parent 35a4da16fc
commit 2b94c316f6
6 changed files with 103 additions and 47 deletions

View file

@ -115,7 +115,7 @@ namespace Nuclex.Support {
BindingFlags.Public | BindingFlags.Static
);
// Create an array to hold the enumeration value and copy them over from
// Create an array to hold the enumeration values and copy them over from
// the fields we just retrieved
EnumType[] values = new EnumType[fieldInfos.Length];
for(int index = 0; index < fieldInfos.Length; ++index) {