This repo is the official home of .NET on GitHub. It's a great starting point to find many .NET OSS projects from Microsoft and the community, including many that are part of the .NET Foundation.
I have created a class which inherits performance counter class and uses all its functionality , But after going through the documentation of EventCounters which says that it is cross platform alternative of Performance counter, I think of replacing performance counter class with event counter class , but i see some limitations such as
Performance counter has Decrement method but Event counter does not have this method.
I can also see both the classes contains lots of method and property differences
So my question is, Is it possible to replace all the functionality of performance counter by having Event counter class ?
I have created a class which inherits performance counter class and uses all its functionality , But after going through the documentation of EventCounters which says that it is cross platform alternative of Performance counter, I think of replacing performance counter class with event counter class , but i see some limitations such as
So my question is, Is it possible to replace all the functionality of performance counter by having Event counter class ?