diff --git a/Benchmarks/ReflectionPerf.cs b/Benchmarks/ReflectionPerf.cs index 58ec3d700..9794d6072 100644 --- a/Benchmarks/ReflectionPerf.cs +++ b/Benchmarks/ReflectionPerf.cs @@ -15,37 +15,37 @@ public void Setup() } [Benchmark] - public object ExecuteComWrappersCreateKeyValuePairsFactoryWithNewObject() + public object ExecuteMarshalingForNewKeyValuePair() { return instance.NewTypeErasedKeyValuePairObject; } [Benchmark] - public object ExecuteComWrappersCreateArrayFactoryWithNewObject() + public object ExecuteMarshalingForNewArray() { return instance.NewTypeErasedArrayObject; } [Benchmark] - public object ExecuteComWrappersCreateNullableFactoryWithNewObject() + public object ExecuteMarshalingForNewNullable() { return instance.NewTypeErasedNullableObject; } [Benchmark] - public object ExecuteComWrappersCreateKeyValuePairsFactoryWithExistingObject() + public object ExecuteMarshalingForExistingKeyvaluePair() { return instance.ExistingTypeErasedKeyValuePairObject; } [Benchmark] - public object ExecuteComWrappersCreateArrayFactoryWithExistingObject() + public object ExecuteMarshalingForExistingArray() { return instance.ExistingTypeErasedArrayObject; } [Benchmark] - public object ExecuteComWrappersCreateNullableFactoryWithExistingObject() + public object ExecuteMarshalingForExistingNullable() { return instance.ExistingTypeErasedNullableObject; }