mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-02-08 05:02:40 -05:00
12 lines
203 B
C#
12 lines
203 B
C#
using System;
|
|
using System.Collections;
|
|
|
|
namespace LibationWinForms
|
|
{
|
|
interface IObjectMemberComparable
|
|
{
|
|
IComparer GetComparer(Type propertyType);
|
|
object GetMemberValue(string valueName);
|
|
}
|
|
}
|