From 8ebc7def16c41602c5462a1483026cc1a6550ba8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 22 Feb 2009 11:57:15 +0200 Subject: [PATCH] Use @see instead of @ref --- bindings/cil/src/instance.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/bindings/cil/src/instance.cs b/bindings/cil/src/instance.cs index 6692a7ebb9..901c4409b3 100644 --- a/bindings/cil/src/instance.cs +++ b/bindings/cil/src/instance.cs @@ -193,8 +193,6 @@ namespace VideoLAN.LibVLC * 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, * the platform adaptation and the VLC log messages and objects subsystems - * (see \ref VideoLAN::LibVLC::VLC for details). - * * @code * using System; * using VideoLAN.LibVLC; @@ -211,15 +209,15 @@ namespace VideoLAN.LibVLC * string[] args = new string[]{ "-v", "--ignore-config" }; * VLC vlc = new VLC(args); * @endcode + * @see VideoLAN::LibVLC::VLC * * 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 * Media media = new Media(vlc, "http://www.example.com/video.ogv"); * Player player = new Player(media); * player.Play(); * @endcode + * @see VideoLAN::LibVLC::Media @see VideoLAN::LibVLC::Player * * All these objects use unmanaged resources. * They all implement the IDisposeable interface. -- 2.39.2