基本信息
源码名称:文字转语音播放
源码大小:0.83M
文件格式:.zip
开发语言:C#
更新时间:2021-12-25
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 5 元×
微信扫码支付:5 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
文字转语音播放
├── 桌面应用
│ ├── packages
│ │ └── System.Speech.5.0.0
│ │ ├── Icon.png
│ │ ├── LICENSE.TXT
│ │ ├── System.Speech.5.0.0.nupkg
│ │ ├── THIRD-PARTY-NOTICES.TXT
│ │ ├── build
│ │ │ └── netcoreapp2.0
│ │ │ └── System.Speech.targets
│ │ ├── lib
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ └── netstandard2.0
│ │ │ ├── System.Speech.dll
│ │ │ └── System.Speech.xml
│ │ ├── ref
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ └── netstandard2.0
│ │ │ └── System.Speech.dll
│ │ ├── runtimes
│ │ │ └── win
│ │ │ └── lib
│ │ │ └── netcoreapp2.1
│ │ │ ├── System.Speech.dll
│ │ │ └── System.Speech.xml
│ │ ├── useSharedDesignerContext.txt
│ │ └── version.txt
│ ├── 桌面应用
│ │ ├── App.config
│ │ ├── Config.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Form2.Designer.cs
│ │ ├── Form2.cs
│ │ ├── Form2.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── 桌面应用.exe
│ │ │ ├── 桌面应用.exe.config
│ │ │ └── 桌面应用.pdb
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ ├── 桌面应用.Form1.resources
│ │ │ ├── 桌面应用.Form2.resources
│ │ │ ├── 桌面应用.Properties.Resources.resources
│ │ │ ├── 桌面应用.csproj.CoreCompileInputs.cache
│ │ │ ├── 桌面应用.csproj.FileListAbsolute.txt
│ │ │ ├── 桌面应用.csproj.GenerateResource.cache
│ │ │ ├── 桌面应用.csproj.SuggestedBindingRedirects.cache
│ │ │ ├── 桌面应用.exe
│ │ │ └── 桌面应用.pdb
│ │ ├── packages.config
│ │ └── 桌面应用.csproj
│ └── 桌面应用.sln
└── 好例子网_桌面应用.zip
22 directories, 46 files
文字转语音播放
.
├── 桌面应用
│ ├── packages
│ │ └── System.Speech.5.0.0
│ │ ├── Icon.png
│ │ ├── LICENSE.TXT
│ │ ├── System.Speech.5.0.0.nupkg
│ │ ├── THIRD-PARTY-NOTICES.TXT
│ │ ├── build
│ │ │ └── netcoreapp2.0
│ │ │ └── System.Speech.targets
│ │ ├── lib
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ └── netstandard2.0
│ │ │ ├── System.Speech.dll
│ │ │ └── System.Speech.xml
│ │ ├── ref
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ └── netstandard2.0
│ │ │ └── System.Speech.dll
│ │ ├── runtimes
│ │ │ └── win
│ │ │ └── lib
│ │ │ └── netcoreapp2.1
│ │ │ ├── System.Speech.dll
│ │ │ └── System.Speech.xml
│ │ ├── useSharedDesignerContext.txt
│ │ └── version.txt
│ ├── 桌面应用
│ │ ├── App.config
│ │ ├── Config.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Form2.Designer.cs
│ │ ├── Form2.cs
│ │ ├── Form2.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── 桌面应用.exe
│ │ │ ├── 桌面应用.exe.config
│ │ │ └── 桌面应用.pdb
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ ├── 桌面应用.Form1.resources
│ │ │ ├── 桌面应用.Form2.resources
│ │ │ ├── 桌面应用.Properties.Resources.resources
│ │ │ ├── 桌面应用.csproj.CoreCompileInputs.cache
│ │ │ ├── 桌面应用.csproj.FileListAbsolute.txt
│ │ │ ├── 桌面应用.csproj.GenerateResource.cache
│ │ │ ├── 桌面应用.csproj.SuggestedBindingRedirects.cache
│ │ │ ├── 桌面应用.exe
│ │ │ └── 桌面应用.pdb
│ │ ├── packages.config
│ │ └── 桌面应用.csproj
│ └── 桌面应用.sln
└── 好例子网_桌面应用.zip
22 directories, 46 files