Home >>
Code Library >> Utility
Utility
Sorted By
date desc
|
Sort By:
|
Date
|
Most Popular
|
Name
|
Ratings
|
QuickModeler is an Add-In for Visual Studio .NET which provides reverse engineering and easy UML modeling functionality to the development environment. It comprises features like autolayout, inheritance and association modeling, cross language model |
|
Gone are the days of manual string concatenation, with .Net's new stringbuilder, string manipulation is now fast and efficient. |
|
String manipulation is something developers run into all the time, (string.split) this method finds all the substrings in a string that are seperated by one or more characters, |
|
using System.Text.RegularExpressions;
public object splitString(string String, string delimiter)
{
// Create a new array and split the string
object array = Regex.Split(String, delimiter);
// Return the array
return array;
} |
|
|
|
Total Views:6266
| Today:1524
|
Total Hits:63
| Today:0
|
|
Classic ASP allowed you to use one method to get either form or querystring values... this is the asp.net version. |
|
UTILITY BELT library is designed so that brand new programmers can use it easily. A lot of thought went into making the library easy to call without having to learn any kind of sequencing of inter-related calls. |
|
Learn how to use the HTMLDocumentClass class and IHTMLDocument2 interface in the .NET Framework to parse HTML.
|
|
|