VB.net Tutorials
81. String equals, Copy to & Copy to in VB.net
By: Issac : 2009-01-30
Description: String Equals function is handy to check whether two specified string object values are same or not
82. File stream operations in VB.net
By: Issac : 2009-01-30
Description: The FileStream class allows us to move data to and from the stream as arrays of bytes, a filestream actually symbolizes a a file in a system. We operate File using FileMode in FileStream Class
83. File operations in VB.net
By: Issac : 2009-01-30
Description: File class is using for the File operations in VB.NET. We can create, delete, copy etc. operations do with File class.
84. File directory operationst in VB.net
By: Issac : 2009-01-30
Description: Directory class in .net is of static nature we need not have to instantiate the class, and can direcly call methods in the class directly from the directory class.
85. String endswith, concat in VB.net
By: Issac : 2009-01-30
Description: To check the whether the given string ends with specified string we use EndsWith method in String class
86. String Split function in VB.net
By: Issac : 2009-01-30
Description: The string split function returns array of strings which are the splits of the given string it is delimited by the given System.Char array
87. Substring in Vb.Net String Class
By: Issac : 2009-01-30
Description: Substring is an interesting method of string class it returns a string that is a substring of the given string. It begins from a given index and extends up to the specified length
88. How to use string chars (str.Chars() ) in VB.net
By: Issac : 2009-01-30
Description: The VB.NET String Chars method returns the character at the specified index of an instance
89. String.Contains (), compare, clone in VB.net
By: Issac : 2009-01-30
Description: Contains method is an important string class method which checks whether specified parameter string exists in the string or not
90. String Insert, index off & format in VB.net
By: Issac : 2009-01-30
Description: String is a basic data structure used to hold string values , the functions with string makes string handling a much easier exercise.The Insert() function in String Class will insert a String in a specified index in the String instance.