Commit 8ebc7def authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Use @see instead of @ref

parent 99088673
...@@ -193,8 +193,6 @@ namespace VideoLAN.LibVLC ...@@ -193,8 +193,6 @@ namespace VideoLAN.LibVLC
* First, you need to create a VLC instance. This will load and setup the * First, you need to create a VLC instance. This will load and setup the
* native VLC runtime, the VLC configuration, the list of available plugins, * native VLC runtime, the VLC configuration, the list of available plugins,
* the platform adaptation and the VLC log messages and objects subsystems * the platform adaptation and the VLC log messages and objects subsystems
* (see \ref VideoLAN::LibVLC::VLC for details).
*
* @code * @code
* using System; * using System;
* using VideoLAN.LibVLC; * using VideoLAN.LibVLC;
...@@ -211,15 +209,15 @@ namespace VideoLAN.LibVLC ...@@ -211,15 +209,15 @@ namespace VideoLAN.LibVLC
* string[] args = new string[]{ "-v", "--ignore-config" }; * string[] args = new string[]{ "-v", "--ignore-config" };
* VLC vlc = new VLC(args); * VLC vlc = new VLC(args);
* @endcode * @endcode
* @see VideoLAN::LibVLC::VLC
* *
* To play media, you need a media and a player. * To play media, you need a media and a player.
* See the \ref VideoLAN::LibVLC::Media
* and \ref VideoLAN::LibVLC::Player classes for details.
* @code * @code
* Media media = new Media(vlc, "http://www.example.com/video.ogv"); * Media media = new Media(vlc, "http://www.example.com/video.ogv");
* Player player = new Player(media); * Player player = new Player(media);
* player.Play(); * player.Play();
* @endcode * @endcode
* @see VideoLAN::LibVLC::Media @see VideoLAN::LibVLC::Player
* *
* All these objects use unmanaged resources. * All these objects use unmanaged resources.
* They all implement the IDisposeable interface. * They all implement the IDisposeable interface.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment