Orchard.Utility - пространство имён

 
Классы
  КлассОписание
Открытый классDependencyOrdering
Открытый классHash
Compute an (almost) unique hash value from various sources. This allows computing hash keys that are easily storable and comparable from heterogenous components.
Открытый классPosition
Открытый классReflect
Allows static reflection on members (methods, fields, properties). This code has been adapted from the following blog post: http://wekempf.spaces.live.com/blog/cns!D18C3EC06EA971CF!694.entry
Открытый классReflectOnT
Allows static reflection on members (methods, fields, properties). This code has been adapted from the following blog post: http://wekempf.spaces.live.com/blog/cns!D18C3EC06EA971CF!694.entry Example: class Program { public void Foo() { } static void Main(string[] args) { Console.WriteLine(ReflectOn<Progra>.GetMethod(p => p.Foo()).Name); } }