Microsoft® Visual Basic® .NET Programmers Cookbook

Next time you hit the wall with a tough Visual Basic .NET problem, get the code behind the solution-and solve it the right way. This PROGRAMMER'S COOKBOOK provides at-a-glance reference to hundreds of Visual Basic .NET programming scenarios using a concise, problem/solution format. The book�...

Descripción completa

Detalles Bibliográficos
Autor principal: McDonald, Matthew (-)
Formato: Libro electrónico
Idioma:Inglés
Publicado: : O'Reilly Media, Inc 2009.
Edición:1st edition
Materias:
Ver en Biblioteca Universitat Ramon Llull:https://discovery.url.edu/permalink/34CSUC_URL/1im36ta/alma991009627719006719
Tabla de Contenidos:
  • ""Copyright""; ""Table of Contents""; ""Acknowledgments""; ""Introduction""; ""Chapter 1. Strings and Regular Expressions""; ""Combine Strings""; ""Retrieve a Portion of a String""; ""Create a String Consisting of a Repeated Character""; ""Change the Case of All Characters in a String""; ""Perform Case-Insensitive String Comparisons""; ""Iterate Over All the Characters in a String""; ""Parse a String Into Words""; ""Find All Occurrences of Specific Text in a String""; ""Replace All Occurrences of Specific Text in a String""; ""Pad a String for Fixed-Width Display""; ""Reverse a String""
  • ""Insert a New Line in a String""""Insert a Special Character in a String""; ""Manipulate Strings Quickly with StringBuilder""; ""Convert a String into a Byte Array""; ""Get a String Representation of a Byte Array""; ""Use Common Regular Expressions""; ""Validate Input with a Regular Expression""; ""Find All Occurrences of a Pattern in a String""; ""Replace All Occurrences of a Pattern in a String""; ""Manipulate a Filename""; ""Manipulate a URI""; ""Validate a Credit Card with Luhnâ€?s Algorithm""; ""Validate an ISBN""; ""Perform a SoundEx String Comparison""
  • ""Chapter 2. Numbers, Dates, and Other Data Types""""Perform Mathematical and Trigonometric Operations""; ""Convert a Number into a Formatted String""; ""Generate a Random Number""; ""Work with Nonâ€?Base 10 Number Systems""; ""Work with Complex Numbers""; ""Work with Vectors""; ""Work with Matrixes""; ""Work with Fractions Without Using Decimals""; ""Evaluate a String Expression""; ""Get the System Date and Time""; ""Add and Subtract Dates and Times""; ""Determine Days of the Week, Leap Years, and More""; ""Get Day and Month Names in Other Languages""; ""Format a Date""
  • ""Generate a Culture-Invariant Date String""""Validate a User-Supplied Date""; ""Generate a GUID""; ""Convert Basic Types to Binary""; ""Test Byte Arrays for Equality""; ""Convert the Name of an Enumerated Value into the Value""; ""Chapter 3. Arrays and Collections""; ""Create and Populate an Array in One Step""; ""Resize an Array""; ""Create an Array That Is Not Bounded at Zero""; ""Create a Jagged Array""; ""Use a Dynamic ArrayList""; ""Fill an ArrayList from an Array""; ""Convert an ArrayList to an Array""; ""Sort Items in an Array or ArrayList""
  • ""Sort Non-Comparable Items in an Array or ArrayList""""Use a Hashtable Instead of a Generic Collection""; ""Enumerate Items in a Hashtable""; ""Use a Queue (FIFO Collection)""; ""Use a Stack (LIFO Collection)""; ""Use a Sorted List""; ""Create Shallow and Deep Copies of a Collection or Array""; ""Create a Strongly Typed Collection""; ""Create a Strongly Typed Dictionary Collection""; ""Remove Items While Iterating Through a Collection""; ""Iterate Through Collection Items in Random Order""; ""Chapter 4. Objects, Interfaces, and Patterns""; ""Create a Value Type""
  • ""Create a Cloneable Object""