Skip to content
This repository was archived by the owner on Sep 16, 2025. It is now read-only.

Differences

shaheen-s edited this page Nov 28, 2020 · 1 revision

You can get the differences between two TypeMaps using TypeMapDifferences.

API

Getting a valid TypeMapDifferences instance can be achieved in two ways:

  1. Manually constructing it.
  TypeMap a = new TypeMap();
  TypeMap b = new TypeMap();
  TypeMapDifferences differences = new TypeMapDifferences(a, b);
  1. Or, calling .GetDiffrences(TypeMap other) on a TypeMap.
  TypeMap a = new TypeMap();
  TypeMap b = new TypeMap();
  TypeMapDifferences differences = a.GetDiffrences(b);

Use

This might come in really handy when developing a plugin for FluentOlap, for example the Ingestion plugins.

Clone this wiki locally