Home Forums Software Development DotNet Documentation available? Reply To: DotNet Documentation available?

#1218
Anders
Participant

Hi Polykarpos,
there is plenty of so-called “slashdoc” documentation in the source code for the EyeX Framework for .NET. All the methods and all enum values should be documented in a format that is directly available through IntelliSense. For example:

        /// <summary>
        /// Gets the engine state: Display size, width and height, in millimeters.
        /// </summary>
        public static EngineState<Size2> DisplaySize
        {
            get { return new EngineState<Size2>(StatePaths.DisplaySize); }
        }

I hope you will be able to find the information you are looking for there.

We have also considered generating an API reference based on this information but it hasn’t been given high enough priority yet. Please let us know if that would be helpful.