<?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%2FInt32</id>
		<title>Csharp/C Sharp by API/System/Int32 - История изменений</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%2FInt32"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System/Int32&amp;action=history"/>
		<updated>2026-04-29T22:54:59Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System/Int32&amp;diff=4881&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/Int32&amp;diff=4881&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/Int32&amp;diff=4882&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/Int32&amp;diff=4882&amp;oldid=prev"/>
				<updated>2010-05-26T12:12:11Z</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;==Int32.Equals(23)==&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.Collections.Generic;&lt;br /&gt;
using System.Text;&lt;br /&gt;
class Program {&lt;br /&gt;
    static void Main(string[] args) {&lt;br /&gt;
        Console.WriteLine(12.GetHashCode());&lt;br /&gt;
        Console.WriteLine(12.Equals(23));&lt;br /&gt;
        Console.WriteLine(12.GetType().BaseType);&lt;br /&gt;
        Console.WriteLine(12.ToString());&lt;br /&gt;
        Console.WriteLine(12); // ToString() called automatically.&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;
==Int32.GetHashCode==&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.Collections.Generic;&lt;br /&gt;
using System.Text;&lt;br /&gt;
class Program {&lt;br /&gt;
    static void Main(string[] args) {&lt;br /&gt;
        Console.WriteLine(12.GetHashCode());&lt;br /&gt;
        Console.WriteLine(12.Equals(23));&lt;br /&gt;
        Console.WriteLine(12.GetType().BaseType);&lt;br /&gt;
        Console.WriteLine(12.ToString());&lt;br /&gt;
        Console.WriteLine(12); // ToString() called automatically.&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;
==Int32.GetType()==&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.Reflection;&lt;br /&gt;
   &lt;br /&gt;
class TypeObjectFromInstanceApp&lt;br /&gt;
{&lt;br /&gt;
    public static void Main(string[] args)&lt;br /&gt;
    {&lt;br /&gt;
        int i = 6;&lt;br /&gt;
        Type type = i.GetType();&lt;br /&gt;
        Console.WriteLine(type.Name);&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;
==Int32 == Int32==&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;
&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;
    System.Int32 intA = 1001;&lt;br /&gt;
    System.Int32 intB = 1000;&lt;br /&gt;
    &lt;br /&gt;
    if(intA == intB)&lt;br /&gt;
      Console.WriteLine(&amp;quot;Same value!\n&amp;quot;);&lt;br /&gt;
    else&lt;br /&gt;
      Console.WriteLine(&amp;quot;Not the same value!\n&amp;quot;);&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;
==Int32.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;
    int myInt = int.Parse(&amp;quot;8&amp;quot;);&lt;br /&gt;
    Console.WriteLine(&amp;quot;-&amp;gt; Value of myInt: {0}&amp;quot;, myInt);&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;
==Int32.ToString==&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.Collections.Generic;&lt;br /&gt;
using System.Text;&lt;br /&gt;
class Program {&lt;br /&gt;
    static void Main(string[] args) {&lt;br /&gt;
        Console.WriteLine(12.GetHashCode());&lt;br /&gt;
        Console.WriteLine(12.Equals(23));&lt;br /&gt;
        Console.WriteLine(12.GetType().BaseType);&lt;br /&gt;
        Console.WriteLine(12.ToString());&lt;br /&gt;
        Console.WriteLine(12); // ToString() called automatically.&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;
==Int32.ToString(String format,CultureInfo info)==&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;
using System.Globalization;&lt;br /&gt;
using System.Threading;&lt;br /&gt;
class Program {&lt;br /&gt;
    static void Main(string[] args) {&lt;br /&gt;
        int val = 1234567890;&lt;br /&gt;
        Console.WriteLine(val.ToString(&amp;quot;N&amp;quot;));&lt;br /&gt;
        Console.WriteLine(val.ToString(&amp;quot;N&amp;quot;,new CultureInfo(&amp;quot;fr-FR&amp;quot;)));&lt;br /&gt;
        Thread.CurrentThread.CurrentCulture = new CultureInfo(&amp;quot;de-DE&amp;quot;);&lt;br /&gt;
        Console.WriteLine(val.ToString(&amp;quot;N&amp;quot;));&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;
==UInt32.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;
using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.Globalization;&lt;br /&gt;
using System.IO;&lt;br /&gt;
using System.Text;&lt;br /&gt;
using System.Security.Cryptography;&lt;br /&gt;
public class MainClass&lt;br /&gt;
{&lt;br /&gt;
    public static void Main()&lt;br /&gt;
    {&lt;br /&gt;
        Console.WriteLine(&amp;quot;{0}: bytes: {1}, range: [{2},{3}]&amp;quot;,&lt;br /&gt;
            typeof(byte).ToString(), sizeof(byte), byte.MinValue, byte.MaxValue);&lt;br /&gt;
        Console.WriteLine(&amp;quot;{0}: bytes: {1}, range: [{2},{3}]&amp;quot;,&lt;br /&gt;
            typeof(char).ToString(), sizeof(char), (int)char.MinValue, (int)char.MaxValue);&lt;br /&gt;
        Console.WriteLine(&amp;quot;{0}: bytes: {1}, range: [{2},{3}]&amp;quot;,&lt;br /&gt;
            typeof(short).ToString(), sizeof(short), short.MinValue, short.MaxValue);&lt;br /&gt;
        Console.WriteLine(&amp;quot;{0}: bytes: {1}, range: [{2},{3}]&amp;quot;,&lt;br /&gt;
            typeof(int).ToString(), sizeof(int), int.MinValue, int.MaxValue);&lt;br /&gt;
        Console.WriteLine(&amp;quot;{0}: bytes: {1}, range: [{2},{3}]&amp;quot;,&lt;br /&gt;
            typeof(long).ToString(), sizeof(long), long.MinValue, long.MaxValue);&lt;br /&gt;
        Console.WriteLine(&amp;quot;{0}: bytes: {1}, range: [{2},{3}]&amp;quot;,&lt;br /&gt;
            typeof(sbyte).ToString(), sizeof(sbyte), sbyte.MinValue, sbyte.MaxValue);&lt;br /&gt;
        Console.WriteLine(&amp;quot;{0}: bytes: {1}, range: [{2},{3}]&amp;quot;,&lt;br /&gt;
            typeof(ushort).ToString(), sizeof(ushort), ushort.MinValue, ushort.MaxValue);&lt;br /&gt;
        Console.WriteLine(&amp;quot;{0}: bytes: {1}, range: [{2},{3}]&amp;quot;,&lt;br /&gt;
            typeof(uint).ToString(), sizeof(uint), uint.MinValue, uint.MaxValue);&lt;br /&gt;
        Console.WriteLine(&amp;quot;{0}: bytes: {1}, range: [{2},{3}]&amp;quot;,&lt;br /&gt;
            typeof(ulong).ToString(), sizeof(ulong), ulong.MinValue, ulong.MaxValue);&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>