System.Func.Invoke(VertexFeatures)

Here are the examples of the csharp api System.Func.Invoke(VertexFeatures) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : FeatureSet.cs
with MIT License
from ExRam

public IFeatureSet ConfigureVertexFeatures(Func<VertexFeatures, VertexFeatures> config)
            {
                return new FeatureSetImpl(GraphFeatures, VariableFeatures, config(VertexFeatures), VertexPropertyFeatures, EdgeFeatures, EdgePropertyFeatures);
            }