自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

ltolll的博客(技术版)

YEARN FOR TECHNIC

  • 博客(2)
  • 资源 (9)
  • 问答 (2)
  • 收藏
  • 关注

原创 C#字符串函数

1.取子串函数SubStringstring tmp2 = tmp1.SubString(0,3);2.C#中有什么函数可以判断某一字符串中是否存在着某一字符?如:"akkk*kkk"是否有“*”? string s = "akkk*kkk";int i = s.IndexOf("*");if( i != -1) 包含else 不包含相似的有LastIndexOf(就是从左面取最后一个

2006-01-27 09:40:00 4771

原创 解决(播放此文件需要由格式标记 75 标识的音频编解码器)的问题

解决(播放此文件需要由格式标记 75 标识的音频编解码器)的问题从网上下载了数据结构的教学视频(asf),可是播放时却出现如下错误:Windows Media Player 播放时,显示“正在发送编解码器请求…正在下载…已完成100%”,然后就出现错误提示信息:“播放此文件需要由格式标记 75 标识的音频编解码器。要确定此编解码器是否可以从 Web 上下载,请单击“Web 帮助”。      

2006-01-27 09:34:00 5458 1

C++ How to Program, 10th Edition, 2016, by Paul Deitel, Harvey

英文第10版 Introducing the New C++14 Standard Preface Welcome to the C++ computer programming language and C++ How to Program, Tenth Edition. We believe that this book and its support materials will give you an informative, challenging and entertaining introduction to C++. The book presents leading-edge computing technologies in a friendly manner appropriate for introductory college course sequences, based on the curriculum recommendations of two key professional organizations—the ACM and the IEEE.

2023-05-20

A Tour of C++ - Stroustrup, Bjarne - Addison Wesley Professional

英文版 第二版 In A Tour of C++ (2/e), Bjarne Stroustrup, the creator of C++, describes what constitutes modern C++. This concise, self-contained guide covers most major language features and the major standard-library components―not, of course, in great depth, but to a level that gives programmers a meaningful overview of the language, some key examples, and practical help in getting started.

2023-05-20

Getting Started with Open Source Development

英文版 Open source software development is a community-driven methodology to develop products, from the design and development stages to distribution. Developers across differents part of the world are passionate about their collaboration, and several successful projects including Firefox, Moodle, and Drupal are widely used today. Moreover, many companies are using open source software as the foundation to build their business models. This book gets you started into the fascinating world of open source software development. Using the exercises and case studies provided, you will get good hands-on experience to contribute to and start open source projects. Authors: Rachna Kapur, Mario Briggs, Pedro Carvalho, Ulisses Costa, Tapas Saha, Raul F. Chong, Peter Kohlmann

2015-03-19

Getting Started with Data Warehousing

Data warehousing software works to manage a repository of large amount of data. It includes a series of features and functions that allow for easier reporting and analysis. IBM uses its InfoSphere Warehouse product to support data warehousing. InfoSphere Warehouse is based on the DB2 database server.

2015-03-19

Microsoft_SQL_Server_2008_A_Beginner's_Guide 英文版

Microsoft SQL Server 2008: A Beginner’s Guide follows three previous editions that covered SQL Server 7, 2000, and 2005. Generally, all SQL Server users who want to get a good understanding of this database system and to work successfully with it will find this book very helpful. (If you are a new SQL Server user but understand SQL, read the section “Differences Between SQL and Transact-SQL Syntax” later in this introduction.) This book addresses users of all components of the SQL Server system. For this reason, it is divided into several parts: users who want to learn more about the relational database component called Database Engine will find the first three parts of the book the most useful. The fourth part of the book is dedicated to business intelligence users who use either Analysis Services or relational extensions concerning BI. The last part of the book provides insight for users who want to use XML data and/or spatial data.

2009-03-31

LINQ Unleached For C Sharp(2/2)

共2个压缩包,这是第2个 About the Author Paul Kimmel is a four-time Microsoft MVP, the author of over a dozen books on object oriented programming and UML, including three books on Microsoft .NET, a columnist for codeguru.com, developer.com, informit.com, devsource.com, and devx.com, a cofounder of the Greater Lansing Area .NET Users Group (glugnet.org, East Lansing and Flint), a full-time software developer, and sometimes pilot. Paul still lives and works in the greater Lansing, Michigan, area (and hasn’t given up on the economy). After 15 years of independent consulting, Paul now works for EDS as an application architect.

2008-12-05

LINQ Unleached For C Sharp(1/2)

共2个压缩包,这是第1个 Foreword Data affects just about every aspect of our lives. Everything we do is analyzed, scrutinized, and delivered back to us in the form of coupons and other marketing materials. When you write an application, you can be sure that data in one form or another will be part of the solution. As software developers, the ease with which we can store, retrieve, and analyze data is crucial to our ability to develop compelling applications. Add to that the fact that data can come in a number of different shapes and formats, and it quickly comes to light that there is tremendous value in a consistent framework for accessing many types of data. Several different data access approaches have been developed for Windows developers over the years. ADO and OLEDB and subsequently ADO.NET gave us universal access to relational databases. MSXML and ADO.NET made it possible to inspect and manipulate XML documents. Each of these technologies had their benefits and drawbacks, but one common thread ran through each of them: They failed to deliver data access capabilities in a way that felt natural to developers. LINQ now makes data access a first-class programming concept in .NET, making it possible for developers to express queries in a way that makes sense to developers. What makes LINQ unique is that it enables programmers to create type-safe data access code complete with Intellisense support and compile time syntax checking. Paul Kimmel has done an excellent job of presenting LINQ in a concise and complete manner. Not only has he made LINQ approachable, but he has also masterfully explained concepts such as Anonymous Types and Lambda Expressions that help make LINQ a reality. The sample code throughout the book demonstrates the application of the technology in a clear and meaningful way. This is a great “Saturday morning with a pot of coffee” kind of book. I hope you’ll dive in and get as much out of this book as I did. Darryl Hogan Architect Evangelist, Microsoft

2008-12-05

Illustrated C# 2005.pdf(3/3)

共3个RAR包,这是第三个<br>

2007-10-17

Illustrated C# 2005.pdf(2/3)

共3个RAR包,这是第二个

2007-10-17

Illustrated C# 2005.pdf(1/3)

请注意: 共3个RAR包,这是第1个 Publisher's description Illustrated C# 2005 doesn’t use the traditional dense prose format of most programming texts. Rather, it presents the C# programming language in a unique visual manner. The book uses three techniques to achieve this: concise text; tables that clarify and summarize language features; and frequent figures and diagrams. Each feature is also illustrated with concise, focused code samples. The book starts with an overview of the .NET platform and the role played by C#, then quickly delves into the language. It covers the entire C# language, including new features added in C# 2.0 as well as the most complex topics. It’s an ideal read if you’re a migrating C++ or VB programmer who already knows how languages work. Despite its title—which might give the impression that it’s a lightweight treatment of the language—this book is anything but. With its clean visual format, you’ll be able to learn the material more quickly and retain it better than you would with a typical C# 2005 book. Even experienced programmers may come away from it with a deeper understanding of the language

2007-10-17

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除