Which are the equivalent of the following operators from VB.Net to C#?
All these functions are member methods of the Microsoft.VisualBasic.Information class, in the Microsoft.VisualBasic assembly, so you can use them directly. However, most of them have C# equivalents, or non language specific equivalents in core .NET framework classes :
Array.GetUpperBoundArray.GetLowerBound== null(char)intValue (cast)String.LengthString.ToUpperString.ToLowerString.Substring (with different arguments)String.TrimEndString.TrimStartString.TrimString.ReplaceString.SplitString.JoinMessageBox.Showcondition ? valueIfTrue : valueIfFalse (conditional operator)Links