资源简介

C#开发的用于VLC的应用,供大家参考学习之用。程序经过调试,完全可以使用。

资源截图

代码片段和文件信息

using System;
using System.Runtime.InteropServices;

namespace MyOwnPlayer
{
    class Core
    {
        //coreHandle字段和属性
        private CoreHandle coreHandle;
        public CoreHandle CoreHandle
        {
            get { return coreHandle; }
        }
        
        //构造方法
        public Core(string[] argv ref ExceptionStruct ex)
        {
            coreHandle = libvlc_new(argv.Length argv ref ex);
        }

        //Dll动态导入
        [DllImport(“libvlc“)]
        private static extern CoreHandle libvlc_new(int argc string[] args ref ExceptionStruct ex);
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      24576  2009-04-11 14:01  MyOwnPlayer\MyOwnPlayer\bin\Debug\MyOwnPlayer.exe

     文件      38400  2009-04-11 14:01  MyOwnPlayer\MyOwnPlayer\bin\Debug\MyOwnPlayer.pdb

     文件       5632  2005-11-11 22:25  MyOwnPlayer\MyOwnPlayer\bin\Debug\MyOwnPlayer.vshost.exe

     文件        623  2008-12-04 11:00  MyOwnPlayer\MyOwnPlayer\Core.cs

     文件        897  2008-12-04 10:27  MyOwnPlayer\MyOwnPlayer\CoreHandle.cs

     文件       1299  2008-12-04 13:37  MyOwnPlayer\MyOwnPlayer\Form1.cs

     文件       2993  2008-12-04 10:49  MyOwnPlayer\MyOwnPlayer\Form1.Designer.cs

     文件       5814  2008-12-04 10:49  MyOwnPlayer\MyOwnPlayer\Form1.resx

     文件        896  2008-12-04 11:01  MyOwnPlayer\MyOwnPlayer\Media.cs

     文件        299  2008-12-04 10:56  MyOwnPlayer\MyOwnPlayer\MediaException.cs

     文件        921  2009-04-11 14:00  MyOwnPlayer\MyOwnPlayer\MediaHandle.cs

     文件       1726  2008-12-04 11:01  MyOwnPlayer\MyOwnPlayer\MediaPlayer.cs

     文件        951  2009-04-11 14:00  MyOwnPlayer\MyOwnPlayer\MediaPlayerHandle.cs

     文件       3560  2008-12-04 13:49  MyOwnPlayer\MyOwnPlayer\MyOwnPlayer.csproj

     文件        842  2008-12-04 11:00  MyOwnPlayer\MyOwnPlayer\obj\Debug\MyOwnPlayer.csproj.GenerateResource.Cache

     文件      24576  2009-04-11 14:01  MyOwnPlayer\MyOwnPlayer\obj\Debug\MyOwnPlayer.exe

     文件        180  2008-12-04 11:00  MyOwnPlayer\MyOwnPlayer\obj\Debug\MyOwnPlayer.Form1.resources

     文件      38400  2009-04-11 14:01  MyOwnPlayer\MyOwnPlayer\obj\Debug\MyOwnPlayer.pdb

     文件        180  2008-12-04 10:20  MyOwnPlayer\MyOwnPlayer\obj\Debug\MyOwnPlayer.Properties.Resources.resources

     文件        296  2009-04-11 14:07  MyOwnPlayer\MyOwnPlayer\obj\MyOwnPlayer.csproj.FileList.txt

     文件        470  2008-12-04 10:11  MyOwnPlayer\MyOwnPlayer\Program.cs

     文件       1148  2008-12-04 13:50  MyOwnPlayer\MyOwnPlayer\Properties\AssemblyInfo.cs

     文件       2877  2008-12-04 10:11  MyOwnPlayer\MyOwnPlayer\Properties\Resources.Designer.cs

     文件       5612  2008-12-04 10:11  MyOwnPlayer\MyOwnPlayer\Properties\Resources.resx

     文件       1095  2008-12-04 10:11  MyOwnPlayer\MyOwnPlayer\Properties\Settings.Designer.cs

     文件        249  2008-12-04 10:11  MyOwnPlayer\MyOwnPlayer\Properties\Settings.settings

     文件        922  2008-12-04 10:11  MyOwnPlayer\MyOwnPlayer.sln

    ..A..H.     21504  2009-04-11 14:07  MyOwnPlayer\MyOwnPlayer.suo

     目录          0  2008-12-04 10:11  MyOwnPlayer\MyOwnPlayer\obj\Debug\TempPE

     目录          0  2009-04-11 14:08  MyOwnPlayer\MyOwnPlayer\bin\Debug

............此处省略9个文件信息

评论

共有 条评论