Exemple #1
0
        private static Delegate GetMetadataGetterDelegate <TValue>(ColumnBindingsBase bindings, int col, string kind)
        {
            ValueGetter <TValue> getter = (ref TValue value) => bindings.GetMetadata(kind, col, ref value);

            return(getter);
        }