<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp_by_API%2FSystem%2FChar</id>
		<title>Csharp/C Sharp by API/System/Char - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp_by_API%2FSystem%2FChar"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System/Char&amp;action=history"/>
		<updated>2026-04-30T07:49:40Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System/Char&amp;diff=4809&amp;oldid=prev</id>
		<title> в 15:31, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System/Char&amp;diff=4809&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:35Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 15:31, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System/Char&amp;diff=4810&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System/Char&amp;diff=4810&amp;oldid=prev"/>
				<updated>2010-05-26T12:11:56Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Char.IsControl==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;  &lt;br /&gt;
using System;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Text.RegularExpressions;&lt;br /&gt;
using System.Text;&lt;br /&gt;
class Class1{&lt;br /&gt;
        static void Main(string[] args){&lt;br /&gt;
            Console.WriteLine(GetCharKind(&amp;quot;f&amp;quot;));&lt;br /&gt;
            Console.WriteLine(GetCharKind(&amp;quot;0&amp;quot;));&lt;br /&gt;
            Console.WriteLine(GetCharKind(&amp;quot;.&amp;quot;));&lt;br /&gt;
            Console.WriteLine(GetCharKind(&amp;quot;}&amp;quot;));&lt;br /&gt;
        }&lt;br /&gt;
    public static String GetCharKind(char theChar)&lt;br /&gt;
    {&lt;br /&gt;
      if (Char.IsControl(theChar))&lt;br /&gt;
      {&lt;br /&gt;
        return &amp;quot;Control&amp;quot;;&lt;br /&gt;
      }&lt;br /&gt;
      else if (Char.IsDigit(theChar))&lt;br /&gt;
      {&lt;br /&gt;
        return &amp;quot;Digit&amp;quot;;&lt;br /&gt;
      }&lt;br /&gt;
      else if (Char.IsLetter(theChar))&lt;br /&gt;
      {&lt;br /&gt;
        return &amp;quot;Letter&amp;quot;;&lt;br /&gt;
      }&lt;br /&gt;
      else if (Char.IsNumber(theChar))&lt;br /&gt;
      {&lt;br /&gt;
        return &amp;quot;Number&amp;quot;;&lt;br /&gt;
      }&lt;br /&gt;
      else if (Char.IsPunctuation(theChar))&lt;br /&gt;
      {&lt;br /&gt;
        return &amp;quot;Punctuation&amp;quot;;&lt;br /&gt;
      }&lt;br /&gt;
      else if (Char.IsSeparator(theChar))&lt;br /&gt;
      {&lt;br /&gt;
        return &amp;quot;Separator&amp;quot;;&lt;br /&gt;
      }&lt;br /&gt;
      else if (Char.IsSurrogate(theChar))&lt;br /&gt;
      {&lt;br /&gt;
        return &amp;quot;Surrogate&amp;quot;;&lt;br /&gt;
      }&lt;br /&gt;
      else if (Char.IsSymbol(theChar))&lt;br /&gt;
      {&lt;br /&gt;
        return &amp;quot;Symbol&amp;quot;;&lt;br /&gt;
      }&lt;br /&gt;
      else if (Char.IsWhiteSpace(theChar))&lt;br /&gt;
      {&lt;br /&gt;
        return &amp;quot;Whitespace&amp;quot;;&lt;br /&gt;
      }&lt;br /&gt;
      else&lt;br /&gt;
      {&lt;br /&gt;
        return &amp;quot;Unknown&amp;quot;;&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Char.IsDigit==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;  &lt;br /&gt;
using System;  &lt;br /&gt;
  &lt;br /&gt;
public class CharDemo {     &lt;br /&gt;
  public static void Main() {     &lt;br /&gt;
    string str = &amp;quot;This is a test. $23&amp;quot;; &lt;br /&gt;
    int i; &lt;br /&gt;
 &lt;br /&gt;
    for(i=0; i &amp;lt; str.Length; i++) { &lt;br /&gt;
      Console.Write(str[i] + &amp;quot; is&amp;quot;); &lt;br /&gt;
      if(Char.IsDigit(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; digit&amp;quot;); &lt;br /&gt;
      if(Char.IsLetter(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; letter&amp;quot;); &lt;br /&gt;
      if(Char.IsLower(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; lowercase&amp;quot;); &lt;br /&gt;
      if(Char.IsUpper(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; uppercase&amp;quot;); &lt;br /&gt;
      if(Char.IsSymbol(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; symbol&amp;quot;); &lt;br /&gt;
      if(Char.IsSeparator(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; separator&amp;quot;); &lt;br /&gt;
      if(Char.IsWhiteSpace(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; whitespace&amp;quot;); &lt;br /&gt;
      if(Char.IsPunctuation(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; punctuation&amp;quot;); &lt;br /&gt;
 &lt;br /&gt;
      Console.WriteLine(); &lt;br /&gt;
    } &lt;br /&gt;
 &lt;br /&gt;
    Console.WriteLine(&amp;quot;Original: &amp;quot; + str); &lt;br /&gt;
 &lt;br /&gt;
    // Convert to upper case.    &lt;br /&gt;
    string newstr = &amp;quot;&amp;quot;; &lt;br /&gt;
    for(i=0; i &amp;lt; str.Length; i++) &lt;br /&gt;
      newstr += Char.ToUpper(str[i]); &lt;br /&gt;
  &lt;br /&gt;
    Console.WriteLine(&amp;quot;Uppercased: &amp;quot; + newstr); &lt;br /&gt;
 &lt;br /&gt;
  }     &lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Char.IsLetter==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;  &lt;br /&gt;
  &lt;br /&gt;
class MainClass {     &lt;br /&gt;
  public static void Main() {     &lt;br /&gt;
    string str = &amp;quot;This is a test. $23&amp;quot;; &lt;br /&gt;
    int i; &lt;br /&gt;
 &lt;br /&gt;
    for(i=0; i &amp;lt; str.Length; i++) { &lt;br /&gt;
      Console.Write(str[i] + &amp;quot; is&amp;quot;); &lt;br /&gt;
      if(Char.IsLetter(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; letter&amp;quot;); &lt;br /&gt;
 &lt;br /&gt;
      Console.WriteLine(); &lt;br /&gt;
    } &lt;br /&gt;
 &lt;br /&gt;
  }     &lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Char.IsLower==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
&lt;br /&gt;
using System;  &lt;br /&gt;
  &lt;br /&gt;
class MainClass {     &lt;br /&gt;
  public static void Main() {     &lt;br /&gt;
    string str = &amp;quot;This is a test. $23&amp;quot;; &lt;br /&gt;
    int i; &lt;br /&gt;
 &lt;br /&gt;
    for(i=0; i &amp;lt; str.Length; i++) { &lt;br /&gt;
      Console.Write(str[i] + &amp;quot; is&amp;quot;); &lt;br /&gt;
      if(Char.IsLower(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; lowercase&amp;quot;); &lt;br /&gt;
      if(Char.IsUpper(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; uppercase&amp;quot;); &lt;br /&gt;
 &lt;br /&gt;
      Console.WriteLine(); &lt;br /&gt;
    } &lt;br /&gt;
 &lt;br /&gt;
  }     &lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Char.IsPunctuation==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;  &lt;br /&gt;
  &lt;br /&gt;
class MainClass {     &lt;br /&gt;
  public static void Main() {     &lt;br /&gt;
    string str = &amp;quot;This is a test. $23&amp;quot;; &lt;br /&gt;
    int i; &lt;br /&gt;
 &lt;br /&gt;
    for(i=0; i &amp;lt; str.Length; i++) { &lt;br /&gt;
      Console.Write(str[i] + &amp;quot; is&amp;quot;); &lt;br /&gt;
      if(Char.IsPunctuation(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; punctuation&amp;quot;); &lt;br /&gt;
 &lt;br /&gt;
      Console.WriteLine(); &lt;br /&gt;
    } &lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Char.IsSeparator==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
&lt;br /&gt;
using System;  &lt;br /&gt;
  &lt;br /&gt;
class MainClass {     &lt;br /&gt;
  public static void Main() {     &lt;br /&gt;
    string str = &amp;quot;This is a test. $23&amp;quot;; &lt;br /&gt;
    int i; &lt;br /&gt;
 &lt;br /&gt;
    for(i=0; i &amp;lt; str.Length; i++) { &lt;br /&gt;
      Console.Write(str[i] + &amp;quot; is&amp;quot;); &lt;br /&gt;
      if(Char.IsSeparator(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; separator&amp;quot;); &lt;br /&gt;
 &lt;br /&gt;
      Console.WriteLine(); &lt;br /&gt;
    } &lt;br /&gt;
 &lt;br /&gt;
  }     &lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Char.IsSymbol==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;  &lt;br /&gt;
  &lt;br /&gt;
class MainClass {     &lt;br /&gt;
  public static void Main() {     &lt;br /&gt;
    string str = &amp;quot;This is a test. $23&amp;quot;; &lt;br /&gt;
    int i; &lt;br /&gt;
 &lt;br /&gt;
    for(i=0; i &amp;lt; str.Length; i++) { &lt;br /&gt;
      Console.Write(str[i] + &amp;quot; is&amp;quot;); &lt;br /&gt;
      if(Char.IsSymbol(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; symbol&amp;quot;); &lt;br /&gt;
 &lt;br /&gt;
      Console.WriteLine(); &lt;br /&gt;
    } &lt;br /&gt;
 &lt;br /&gt;
  }     &lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Char.IsUpper==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;  &lt;br /&gt;
  &lt;br /&gt;
class MainClass {     &lt;br /&gt;
  public static void Main() {     &lt;br /&gt;
    string str = &amp;quot;This is a test. $23&amp;quot;; &lt;br /&gt;
    int i; &lt;br /&gt;
 &lt;br /&gt;
    for(i=0; i &amp;lt; str.Length; i++) { &lt;br /&gt;
      Console.Write(str[i] + &amp;quot; is&amp;quot;); &lt;br /&gt;
      if(Char.IsLower(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; lowercase&amp;quot;); &lt;br /&gt;
      if(Char.IsUpper(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; uppercase&amp;quot;); &lt;br /&gt;
 &lt;br /&gt;
      Console.WriteLine(); &lt;br /&gt;
    } &lt;br /&gt;
 &lt;br /&gt;
  }     &lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Char.IsWhiteSpace==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt; &lt;br /&gt;
using System;  &lt;br /&gt;
  &lt;br /&gt;
class MainClass {     &lt;br /&gt;
  public static void Main() {     &lt;br /&gt;
    string str = &amp;quot;This is a test. $23&amp;quot;; &lt;br /&gt;
    int i; &lt;br /&gt;
 &lt;br /&gt;
    for(i=0; i &amp;lt; str.Length; i++) { &lt;br /&gt;
      Console.Write(str[i] + &amp;quot; is&amp;quot;); &lt;br /&gt;
      if(Char.IsWhiteSpace(str[i])) &lt;br /&gt;
        Console.Write(&amp;quot; whitespace&amp;quot;); &lt;br /&gt;
 &lt;br /&gt;
      Console.WriteLine(); &lt;br /&gt;
    } &lt;br /&gt;
 &lt;br /&gt;
  }     &lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Char.MaxValue==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
using System;&lt;br /&gt;
class Test {&lt;br /&gt;
  public static void Main() {&lt;br /&gt;
       // First, print out the minimum values&lt;br /&gt;
       Console.WriteLine(&amp;quot;System Minimums\n&amp;quot;);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinSByte {0}&amp;quot;, System.SByte.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinByte {0}&amp;quot;, System.Byte.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinInt16 {0}&amp;quot;, System.Int16.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinUInt16 {0}&amp;quot;, System.UInt16.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinInt32 {0}&amp;quot;, System.Int32.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinUInt32 {0}&amp;quot;, System.UInt32.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinInt64 {0}&amp;quot;, System.Int64.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinUInt64 {0}&amp;quot;, System.UInt64.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinChar {0}&amp;quot;, System.Char.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinSingle {0}&amp;quot;, System.Single.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinDouble {0}&amp;quot;, System.Double.MinValue);&lt;br /&gt;
       // Console.WriteLine( &amp;quot;MinBoolean {0}&amp;quot;, System.Boolean.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinDecimal {0}&amp;quot;, System.Decimal.MinValue);&lt;br /&gt;
    &lt;br /&gt;
       Console.WriteLine(&amp;quot;\nSystem Maximums\n&amp;quot;);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxSByte {0}&amp;quot;, System.SByte.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxByte {0}&amp;quot;, System.Byte.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxInt16 {0}&amp;quot;, System.Int16.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxUInt16 {0}&amp;quot;, System.UInt16.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxInt32 {0}&amp;quot;, System.Int32.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxUInt32 {0}&amp;quot;, System.UInt32.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxInt64 {0}&amp;quot;, System.Int64.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxUInt64 {0}&amp;quot;, System.UInt64.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxChar {0}&amp;quot;, System.Char.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxSingle {0}&amp;quot;, System.Single.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxDouble {0}&amp;quot;, System.Double.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxDecimal {0}&amp;quot;, System.Decimal.MaxValue);&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Char.MinValue==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
using System;&lt;br /&gt;
class Test {&lt;br /&gt;
  public static void Main() {&lt;br /&gt;
       // First, print out the minimum values&lt;br /&gt;
       Console.WriteLine(&amp;quot;System Minimums\n&amp;quot;);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinSByte {0}&amp;quot;, System.SByte.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinByte {0}&amp;quot;, System.Byte.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinInt16 {0}&amp;quot;, System.Int16.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinUInt16 {0}&amp;quot;, System.UInt16.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinInt32 {0}&amp;quot;, System.Int32.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinUInt32 {0}&amp;quot;, System.UInt32.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinInt64 {0}&amp;quot;, System.Int64.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinUInt64 {0}&amp;quot;, System.UInt64.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinChar {0}&amp;quot;, System.Char.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinSingle {0}&amp;quot;, System.Single.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinDouble {0}&amp;quot;, System.Double.MinValue);&lt;br /&gt;
       // Console.WriteLine( &amp;quot;MinBoolean {0}&amp;quot;, System.Boolean.MinValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MinDecimal {0}&amp;quot;, System.Decimal.MinValue);&lt;br /&gt;
    &lt;br /&gt;
       Console.WriteLine(&amp;quot;\nSystem Maximums\n&amp;quot;);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxSByte {0}&amp;quot;, System.SByte.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxByte {0}&amp;quot;, System.Byte.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxInt16 {0}&amp;quot;, System.Int16.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxUInt16 {0}&amp;quot;, System.UInt16.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxInt32 {0}&amp;quot;, System.Int32.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxUInt32 {0}&amp;quot;, System.UInt32.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxInt64 {0}&amp;quot;, System.Int64.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxUInt64 {0}&amp;quot;, System.UInt64.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxChar {0}&amp;quot;, System.Char.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxSingle {0}&amp;quot;, System.Single.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxDouble {0}&amp;quot;, System.Double.MaxValue);&lt;br /&gt;
       Console.WriteLine( &amp;quot;MaxDecimal {0}&amp;quot;, System.Decimal.MaxValue);&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Char.Parse(String value)==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;   &lt;br /&gt;
using System;&lt;br /&gt;
class MainClass&lt;br /&gt;
{&lt;br /&gt;
    public static void Main(string[] args)&lt;br /&gt;
    {&lt;br /&gt;
    char myChar = char.Parse(&amp;quot;w&amp;quot;);&lt;br /&gt;
    Console.WriteLine(&amp;quot;-&amp;gt; Value of myChar: {0}\n&amp;quot;, myChar);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Char.ToUpper==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;  &lt;br /&gt;
using System;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Text.RegularExpressions;&lt;br /&gt;
using System.Text;&lt;br /&gt;
class Class1{&lt;br /&gt;
        static void Main(string[] args){&lt;br /&gt;
            Console.WriteLine(IsInRangeCaseInsensitive(&amp;quot;c&amp;quot;, &amp;quot;a&amp;quot;, &amp;quot;G&amp;quot;));&lt;br /&gt;
            Console.WriteLine(IsInRangeCaseInsensitive(&amp;quot;c&amp;quot;, &amp;quot;a&amp;quot;, &amp;quot;c&amp;quot;));&lt;br /&gt;
            Console.WriteLine(IsInRangeCaseInsensitive(&amp;quot;c&amp;quot;, &amp;quot;g&amp;quot;, &amp;quot;g&amp;quot;));&lt;br /&gt;
            Console.WriteLine(IsInRangeCaseInsensitive((char)32, &amp;quot;a&amp;quot;, &amp;quot;b&amp;quot;));&lt;br /&gt;
        }&lt;br /&gt;
    public static bool IsInRangeCaseInsensitive(char testChar, char startOfRange, char endOfRange)&lt;br /&gt;
    {&lt;br /&gt;
      testChar = char.ToUpper(testChar);&lt;br /&gt;
      startOfRange = char.ToUpper(startOfRange);&lt;br /&gt;
      endOfRange = char.ToUpper(endOfRange);&lt;br /&gt;
      &lt;br /&gt;
      if (testChar &amp;gt;= startOfRange &amp;amp;&amp;amp; testChar &amp;lt;= endOfRange)&lt;br /&gt;
      {&lt;br /&gt;
        // testChar is within the range&lt;br /&gt;
        return (true);&lt;br /&gt;
      }&lt;br /&gt;
      else&lt;br /&gt;
      {&lt;br /&gt;
        // testChar is NOT within the range &lt;br /&gt;
        return (false);&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>