| c# Programming Glossary: str.lengthSplitting a string into chunks of a certain size http://stackoverflow.com/questions/1450774/splitting-a-string-into-chunks-of-a-certain-size  Split string str int chunkSize return Enumerable.Range 0 str.Length chunkSize .Select i str.Substring i chunkSize chunkSize   share.. 
 Simple 2 way encryption for C# http://stackoverflow.com/questions/165808/simple-2-way-encryption-for-c-sharp  less than 100 . public byte StrToByteArray string str  if str.Length 0 throw new Exception Invalid string value in StrToByteArray.. value in StrToByteArray byte val byte byteArr new byte str.Length 3 int i 0 int j 0 do  val byte.Parse str.Substring i 3  byteArr.. byte.Parse str.Substring i 3  byteArr j val i 3  while i str.Length return byteArr  Same comment as above. Normally the conversion.. 
 Is the DataTypeAttribute validation working in MVC2? http://stackoverflow.com/questions/2391423/is-the-datatypeattribute-validation-working-in-mvc2 
 Split String into smaller Strings by length variable http://stackoverflow.com/questions/3008718/split-string-into-smaller-strings-by-length-variable  this string str int maxLength for int index 0 index str.Length index maxLength yield return str.Substring index Math.Min maxLength.. yield return str.Substring index Math.Min maxLength str.Length index  Alternative public static IEnumerable string SplitByLength.. int maxLength int index 0 while true if index maxLength str.Length  yield return str.Substring index yield break  yield return.. 
 JSON formatter in C#? http://stackoverflow.com/questions/4580397/json-formatter-in-c  0 var quoted false var sb new StringBuilder for var i 0 i str.Length i  var ch str i switch ch   case ' '  case ' '  sb.Append ch.. 
 .NET String to byte Array C# http://stackoverflow.com/questions/472906/net-string-to-byte-array-c-sharp  static byte GetBytes string str byte bytes new byte str.Length sizeof char System.Buffer.BlockCopy str.ToCharArray 0 bytes.. 
 Fastest way to remove white spaces in string http://stackoverflow.com/questions/5203607/fastest-way-to-remove-white-spaces-in-string  char toExclude StringBuilder sb new StringBuilder str.Length for int i 0 i str.Length i  char c str i if toExclude.Contains.. sb new StringBuilder str.Length for int i 0 i str.Length i  char c str i if toExclude.Contains c sb.Append c return sb.ToString.. this string str StringBuilder sb new StringBuilder str.Length for int i 0 i str.Length i  char c str i switch c  case ' r'.. 
 AES Encryption in Java and Decryption in C# http://stackoverflow.com/questions/5295110/aes-encryption-in-java-and-decryption-in-c-sharp  and static private byte HexToBytes string str  if str.Length 0 str.Length 2 0 return new byte 0 byte buffer new byte str.Length.. static private byte HexToBytes string str  if str.Length 0 str.Length 2 0 return new byte 0 byte buffer new byte str.Length 2 char.. 0 str.Length 2 0 return new byte 0 byte buffer new byte str.Length 2 char c for int bx 0 sx 0 bx buffer.Length bx sx  Convert first.. 
 |