We can use String.Join method to create a new string from an array of string. Let’ say I have a array of the some words and i want to create a sentence from this array then i can use The String.Join method with an array and a separator string. Continue reading “Create a new string from an array of string through String.Join method”
Tag: c
Exclude specific files in file search with in a directory in C#
This article demonstrate how we can get the list of the files according specific search pattern with excluding some files. Suppose if a folder contains the following files: Continue reading “Exclude specific files in file search with in a directory in C#”
How to check whether string is a palindrome or not using c#
A palindrome is a word, number, or other sequence of units that can be read the same way in either direction.Through below code sample,you can check whether string is a palindrome or not using c#.
Continue reading “How to check whether string is a palindrome or not using c#”