oozcitak / exiflibrary

A .Net Standard library for editing Exif metadata
MIT License
131 stars 48 forks source link

Incorrect type casting in docs #86

Closed MenachemICTBIT closed 2 years ago

MenachemICTBIT commented 3 years ago

In multiple places in the docs there is an incorrect casting

For example:

file.Set(ExifTag.ISOSpeedRatings, <ushort>200); is incorrect

Should be file.Set(ExifTag.ISOSpeedRatings, (ushort)200);

bugybunny commented 2 years ago

I was fixing something else in the documentation and created a PR for this and also fixed the one cast in the file I touched https://github.com/oozcitak/exiflibrary/pull/92. This project seems kind of dead though; not sure if the maintainer will see and merge it.