<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://www.vbex.ru/index.php?action=history&amp;feed=atom&amp;title=VB.Net_by_API%2FSystem%2FInteger</id>
		<title>VB.Net by API/System/Integer - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://www.vbex.ru/index.php?action=history&amp;feed=atom&amp;title=VB.Net_by_API%2FSystem%2FInteger"/>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net_by_API/System/Integer&amp;action=history"/>
		<updated>2026-04-05T23:50:25Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://www.vbex.ru/index.php?title=VB.Net_by_API/System/Integer&amp;diff=2441&amp;oldid=prev</id>
		<title> в 16:40, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net_by_API/System/Integer&amp;diff=2441&amp;oldid=prev"/>
				<updated>2010-05-26T16:40:16Z</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;Версия 16:40, 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://www.vbex.ru/index.php?title=VB.Net_by_API/System/Integer&amp;diff=2442&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://www.vbex.ru/index.php?title=VB.Net_by_API/System/Integer&amp;diff=2442&amp;oldid=prev"/>
				<updated>2010-05-26T12:50: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;==Integer.CompareTo==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;  &lt;br /&gt;
 &lt;br /&gt;
public class Test&lt;br /&gt;
   public Shared Sub Main&lt;br /&gt;
        Dim I As Integer = 0&lt;br /&gt;
        Dim S As Integer = 8&lt;br /&gt;
        Console.WriteLine(I.rupareTo(S))&lt;br /&gt;
   End Sub&lt;br /&gt;
End class&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Integer.GetType==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;  &lt;br /&gt;
Module Module1&lt;br /&gt;
  Const x As String = &amp;quot;This is a string&amp;quot;&lt;br /&gt;
  Sub Main()&lt;br /&gt;
    Dim a As Double = 5.678&lt;br /&gt;
    Dim b As Int32 = 123&lt;br /&gt;
    Console.WriteLine(a.ToString)&lt;br /&gt;
    Console.WriteLine(b.ToString)&lt;br /&gt;
    Console.WriteLine(456.987.ToString)&lt;br /&gt;
    Dim c As Integer&lt;br /&gt;
    Console.WriteLine(c.GetType())&lt;br /&gt;
    Console.WriteLine(c.GetType().ToString)&lt;br /&gt;
  End Sub&lt;br /&gt;
End Module&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Integer.MaxValue==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;  &lt;br /&gt;
Public Class Tester&lt;br /&gt;
    Public Shared Sub Main&lt;br /&gt;
        Dim result As New System.Text.StringBuilder()&lt;br /&gt;
        result.AppendLine(&amp;quot;MaxValue...&amp;quot;)&lt;br /&gt;
        Dim maxByte As Byte = Byte.MaxValue&lt;br /&gt;
        Dim maxSByte As SByte = SByte.MaxValue&lt;br /&gt;
        Dim maxShort As Short = Short.MaxValue&lt;br /&gt;
        Dim maxUShort As UShort = UShort.MaxValue&lt;br /&gt;
        Dim maxInteger As Integer = Integer.MaxValue&lt;br /&gt;
        Dim maxUInteger As UInteger = UInteger.MaxValue&lt;br /&gt;
        Dim maxLong As Long = Long.MaxValue&lt;br /&gt;
        Dim maxULong As ULong = ULong.MaxValue&lt;br /&gt;
        result.Append(&amp;quot;Byte &amp;quot;).AppendLine(maxByte)&lt;br /&gt;
        result.Append(&amp;quot;SByte &amp;quot;).AppendLine(maxSByte)&lt;br /&gt;
        result.Append(&amp;quot;Short &amp;quot;).AppendLine(maxShort)&lt;br /&gt;
        result.Append(&amp;quot;UShort = &amp;quot;).AppendLine(maxUShort)&lt;br /&gt;
        result.Append(&amp;quot;Integer = &amp;quot;).AppendLine(maxInteger)&lt;br /&gt;
        result.Append(&amp;quot;UInteger = &amp;quot;).AppendLine(maxUInteger)&lt;br /&gt;
        result.Append(&amp;quot;Long = &amp;quot;).AppendLine(maxLong)&lt;br /&gt;
        result.Append(&amp;quot;ULong = &amp;quot;).AppendLine(maxULong)&lt;br /&gt;
        Console.WriteLine(result.ToString())&lt;br /&gt;
     End Sub&lt;br /&gt;
End Class&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Integer.MinValue==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;  &lt;br /&gt;
public class Test&lt;br /&gt;
   public Shared Sub Main&lt;br /&gt;
               Dim iNum As Integer&lt;br /&gt;
               Console.WriteLine(&amp;quot;Integer: &amp;quot; &amp;amp; iNum.MinValue &amp;amp; &amp;quot; to &amp;quot; &amp;amp; iNum.MaxValue)&lt;br /&gt;
   End Sub&lt;br /&gt;
End class&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Integer.Parse==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;  &lt;br /&gt;
Imports System&lt;br /&gt;
Imports System.Configuration&lt;br /&gt;
Imports System.Resources &amp;quot; Resource readers&lt;br /&gt;
Public Class MainClass&lt;br /&gt;
    &lt;br /&gt;
    Shared Sub Main(ByVal args As String())&lt;br /&gt;
        Dim flag As Boolean = False&lt;br /&gt;
        Dim name As String = &amp;quot;&amp;quot;&lt;br /&gt;
        Dim number As Integer = 0&lt;br /&gt;
        Dim i As Integer&lt;br /&gt;
        For i = 0 To args.Length - 1&lt;br /&gt;
            Select Case args(i)&lt;br /&gt;
                Case &amp;quot;/flag&amp;quot;&lt;br /&gt;
                    flag = True&lt;br /&gt;
                Case &amp;quot;/name&amp;quot;&lt;br /&gt;
                    i += 1&lt;br /&gt;
                    name = args(i)&lt;br /&gt;
                Case &amp;quot;/number&amp;quot;&lt;br /&gt;
                    i += 1&lt;br /&gt;
                    number = Integer.Parse(args(i))&lt;br /&gt;
                Case Else&lt;br /&gt;
                    Console.WriteLine(&amp;quot;invalid args!&amp;quot;)&lt;br /&gt;
                    Exit Sub&lt;br /&gt;
            End Select&lt;br /&gt;
        Next&lt;br /&gt;
        Console.WriteLine(flag.ToString(), &amp;quot;Flag&amp;quot;)&lt;br /&gt;
        Console.WriteLine(name, &amp;quot;Name&amp;quot;)&lt;br /&gt;
        Console.WriteLine(number.ToString(), &amp;quot;Number&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    End Sub&lt;br /&gt;
End Class&lt;br /&gt;
   &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Integer.ToString()==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;vbnet&amp;quot;&amp;gt;  &lt;br /&gt;
Imports System&lt;br /&gt;
Imports System.Data&lt;br /&gt;
Imports System.Collections&lt;br /&gt;
public class MainClass&lt;br /&gt;
   Shared Sub Main()&lt;br /&gt;
        Dim A As Boolean&lt;br /&gt;
        Dim I As Integer&lt;br /&gt;
        I = 5&lt;br /&gt;
        A = CBool(I)&lt;br /&gt;
        Console.WriteLine(&amp;quot;Value of Boolean assigned from 5 is : &amp;quot; + A.ToString())&lt;br /&gt;
        I = CInt(A)&lt;br /&gt;
        Console.WriteLine(&amp;quot;And converted back to Integer: &amp;quot; + I.ToString())&lt;br /&gt;
   End Sub&lt;br /&gt;
End Class&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>