-
Convert Object to Base64String | GOPI's PORTAL
Convert Object to Base64String
2026-07-02 -
SQL Server Date Time Conversion Formats | GOPI's PORTAL
Best articles on AngularJs, Angular, Azure, ASP.NET, C#.NET, SQL Server, HTML, CSS,Javascript, JQuery, and many more..
2026-07-06 -
Extension Methods | GOPI's PORTAL
Following are some useful extension methods written in C# 1) To convert the given date time to the given timezone public static DateTime LocalTime(this DateTime dt, string timeZone) … string TitleCase(this string word) { TextInfo objTextInfo = new System.Globalization.CultureInfo("en-US").TextInfo; return objTextInfo.ToTitleCase(word.ToLower()); } 3) To convert
2026-07-02 -
Compute String Hash : C# Extension method | GOPI's PORTAL
You cannot convert the hash value back to original string. So it is good to store sensitive data like passwords as hash value. … data)); } break; case "sha512": using (SHA512 sha512Hash = SHA512.Create()) { bytes = sha512Hash.ComputeHash(Encoding.UTF8.GetBytes(data)); } break; } if (bytes.Length > 0) { // Convert
2026-07-02 -
Restore a Database from the SQL Command | GOPI's PORTAL
Best articles on AngularJs, Angular, Azure, ASP.NET, C#.NET, SQL Server, HTML, CSS,Javascript, JQuery, and many more..
2026-07-02 -
C# - Converting Unix times(epoch time) to/from Local time | GOPI's PORTAL
Converting Unix times(epoch time) to or from Local time
2026-07-02 -
Generating Comma Seperated List Using SELECT Clause From Table Column | GOPI's PORTAL
Generating Comma Seperated List Using SELECT Clause From Table Column
2026-07-06 -
Fixing Error Messages Problem in windows CE | GOPI's PORTAL
Fixing Error Messages Problem in windows CE
2026-07-06 -
ASP.NET Security Vulnerability found | GOPI's PORTAL
Best articles on AngularJs, Angular, Azure, ASP.NET, C#.NET, SQL Server, HTML, CSS,Javascript, JQuery, and many more..
2026-07-06 -
Encryption and Decryption using TripleDES | GOPI's PORTAL
Encryption and Decryption using TripleDES
2026-07-02