how to generate random password in asp.net Below program show how to generate random password using c# console application. This program can be
Continue reading
1). If we want to return multiple types from using single method without casting. C# provides beautiful feature “Dynamic” keyword. See below example.
Continue reading
public static DataSet GetDataSet(this string xmlString) { DataSet set = new DataSet(); try { StringReader input = new StringReader(xmlString); XmlTextReader reader = new
Continue reading
public static class AssemblyInfo { public static string BuildName; public static string BuildVersion; public static string BuildDate; static GlobalInfo() { var assembly =
Continue reading