Go Back   Free download software, ebook, film, music, image, code, script ... > Ebooks > Tủ sách Tin học > Programming
Đăng Kí Hỏi/Ðáp Image Thành Viên Lịch Get Link Tìm Kiếm Bài Trong Ngày Ðánh Dấu Ðã Ðọc Tags


Gởi Ðề Tài Mới  Trả lời

Trợ giúp của Mr GOC
Ðề tài Người Gởi Chuyên mục Trả lời Bài mới gởi
All About C - C++ - C# - Visual C++ Training Videos [RS.com] blacktiger Programming 1 03-30-2008 03:38 AM
CBT Nuggets: Windows Vista Training Videos water_sky Vista Softwares 0 10-12-2007 09:36 AM
3D MAX useful training videos damtrau Tutorial Videos 0 09-25-2007 01:55 AM

 
LinkBack Ðiều Chỉnh Kiếm Trong Bài Xếp Bài
Old 07-27-2008, 09:58 AM   #1 (permalink)
Moderator
 
Tham gia ngày: Mar 2008
Bài gởi: 795
Default C# Training Videos - 24hrs+ Webcast Series



C# Soup To Nuts Webcast Series

This webcast series is devoted to those who want to learn to really use Visual C# and what it can do. Learn from Bill Steele, a renowned expert in software development and featured speaker for Microsoft and NASA.

Bill loves creating the applications that often pop right into his head. Unfortunately, it takes his fingers a little longer to type them in. Bill is MCSD certified and has logged more than 15 years as a software developer. He's given over 200 presentations to date, and is currently developing a NASA flight computer for small aircraft. What's the toughest part of managing a 50-member team? "Those developer types always think they know it all," Bill says with a wink.
__________________________________________________ ________________

Introduction to C#
Join me in this webcast where I kick off an introduction to Microsoft's Newest Programming language, C#. I will explore the basic language contructs and begin to explore what types of applications we can build. This will be the "front door" to a series of webcasts on C# where we will progressivly get deeper and deeper in to this fantastic language.


Visual C# Express
Join me in this webcast where we will introduce you to Visual C# Express. Visual C# Express is a free download from Microsoft that allows you to develop C# applications. We will learn about the powerful IDE features like Code Editor, Compiler, Intellisense and the Debugger. We will also learn about the project system that allows us to build a collection to keep all the files related to our program together.


Class Libraries
C# is a very powerful language, however, it doesn't do everything by itself. Instead, it relies on a hiarchical set of prewritten functions that allows developers to gain access to standard functionality provided by the host operating system. These functions are contained in files called "Class Libraries." Join me while we begin to explore some of the basics of class libraries and learn how C# provides basic functionallity through Class Libraries for developers.


C# Program Structure
C# is the newest programming language from Microsoft. So far, in this series, we've been exploring the basics of C# and Visual C# Express. In this webcast, we will begin to dive deep into just what C# is and how programs written in C# are structured. We'll begin by looking at how the "main" function is defined. We will then look at the basics of the language and how C# assembles the lines of code you write into something meaningful to the runtime.


Language Fundamentals
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn what Types, Variables, Constants, Statements and more are and how to use them.

Branching and Looping
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn about iterators, loops and Branching.


Classes and Objects
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn about classes, objects and how to use them.


Operator Basics
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn about the different kinds of operators and how to use them.


Basic Debugging
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific Visual C# Express features. We will learn about debugging and how the IDE allows you to view what is going on inside your application while it is running.


Arrays and Collections
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn about arrays and collections and how we can use them to store and organize data withing our application.


Creating and Manipulating Strings
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn about strings and how to create and manipulate them utilizing basic operators as well as the StringBuilder class.


Exception Handling
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn how handles unexpected problems with our application via the robust Exception Handling system built into the .NET Framework. We will learn about Try-Catch blocks and how to correctly handle the different types of exceptions that your application can experience.


Delegates and Events
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine specific C# language features. We will learn about Delegates and Events. Delegates and Events allow us to build applications that can let others know that some type of interesting thing has happened within our application. We will also see how we can even have multiple listeners respond to a single event.


Inheritance and Polymorphism
Join me in this webcast series where I will teach you the basics of Microsoft's C# Language. In this webcast we will examine the specific C# language features that allow us to create objects that are "like" other objects. We see this type of coorelation in every day objects and often need to model that in our programs. Inheritance and Polymorphism solve various kinds of problem, including reducing the amount of code we write as well as making it much easier to understand.


C# and the Web
In this webcast, we will see how C# can be used to build applications that target websites. We will learn about ASP.NET and how it relates to C# and see how we can build web pages and controls that allow us to reuse our code.


Custom Web Controls
Join me in this webcast where I will teach you about building basic ASP.NET controls in C#. C# and ASP.NET together bring us a powerful platform for developing web applications, but sometimes, we need to think about the application as a whole. Code reuse is on of those important features of application development that can significantly reduce our development time. In this webcast, we will see how we can use User Controls and Custom Controls to help us trim that development time down.


C# and Windows Applications
Join me in this webcast where I will teach you about building basic Windows Applications. The basic window class we use in C# is the Form. In this webcast, we will explore the System.Windows.Form object and see how we can expand it and utilize it to suite our exact needs.


Custom Controls
In the previous webcast in this series, I talked about using C# standard Windows form object. However, some applications require a user interface that is unique or different than the standard forms. In this webcast, we will explore some of the more advanced features of Windows Forms development, such as GDI+ that allow us to tailor the user interface to exactly what our applicaiton needs.


C# and Windows Presentation Foundation
Join me in this webcast where I will discuss how to take advantage of Windows Vista's new presentation system, Windows Presentation Foundation (aka WPF) with C#. WPF allows our applications to include stunning graphics and enhanced user experience functionallity that was unatainable in the past.


C# and SQL Server 2005
Join me in this webcast where I will discuss how to include data access features in your applications. I will specifically discuss how to integrate SQL Server 2005 database functionallity directly into your web and Windows based applications. C# allows us to programatically get direct access to SQL Server data. In this webcast, we will look at the various features in C# that allow us to develop against SQL Server 2005 and other data sources.


C# and Game Development
Join me in this webcast where I will discuss game development with C#. C# can be used to build a variety of software, but one of the most overlooked types of programs is games. In this webcast, I'll discuss XNA Game Studio Express. XNA is a gaming framework available for Windows as well as for the XBox 360. In this session, we'll see how XNA Game Studio and Microsoft Visual C# Express allow you to develop stunning 3D games with ease.


C# Application Deployment Options
Join me in this final webcast in the C# Soup To Nuts series, where we will discuss the various deployment options for your applications. Writing an application can be a very tedious task, but deploying it can be a greater challenge. In this webcast, we'll look at the various deployment options you have, we'll see how they work and afterwards, you will have the information you need to sucessfully deploy your own applications.






Trích:
[Only registered and activated users can see links. ]
[Only registered and activated users can see links. ]



Trích:
Zer0Day@USAWarez
iloveget4 is offline   Trả Lời Với Trích Dẫn
Gởi Ðề Tài Mới  Trả lời


Ðiều Chỉnh Kiếm Trong Bài
Kiếm Trong Bài:

Kiếm Chi Tiết
Xếp Bài



Trợ giúp của Mr GOC
Ðề tài Người Gởi Chuyên mục Trả lời Bài mới gởi
All About C - C++ - C# - Visual C++ Training Videos [RS.com] blacktiger Programming 1 03-30-2008 03:38 AM
CBT Nuggets: Windows Vista Training Videos water_sky Vista Softwares 0 10-12-2007 09:36 AM
3D MAX useful training videos damtrau Tutorial Videos 0 09-25-2007 01:55 AM


Múi giờ GMT. Hiện tại là 04:11 AM.



Powered by: vBulletin Version 3.7.2 Copyright © Cộng đồng Mạng Việt Nam @ GOC SystemAd Management by RedTyger
This site does not store any files on its server. We only index and link to content provided by other sites. More detail...


Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
1 2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 91 96 97 99 100 101 102 103 104 105 106 107 109 111 114 116 117 118 119 120 121 123 124 125 132 133 134 135 136 137 138 139 140 141 142 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 234 235 236 237 238 239 240 241 242 243 244 245 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 328 329 330 331 332 333 334 335 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351