<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									c# | Visual Studio | преобразовать массив byte[] в значение Int - Разное				            </title>
            <link>https://microtechnics.ru/community/raznoe/c-visual-studio-preobrazovat-massiv-byte-v-znachenie-int/</link>
            <description>Обсуждение вопросов, посвященных программированию микроконтроллеров, разработке электроники и не только.</description>
            <language>ru-RU</language>
            <lastBuildDate>Sat, 11 Jul 2026 20:43:19 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>НА: c# | Visual Studio | преобразовать массив byte[] в значение Int</title>
                        <link>https://microtechnics.ru/community/raznoe/c-visual-studio-preobrazovat-massiv-byte-v-znachenie-int/#post-3418</link>
                        <pubDate>Fri, 21 Feb 2025 07:44:19 +0000</pubDate>
                        <description><![CDATA[@aveal спасибо, решение работает.]]></description>
                        <content:encoded><![CDATA[@aveal спасибо, решение работает.]]></content:encoded>
						                            <category domain="https://microtechnics.ru/community/raznoe/">Разное</category>                        <dc:creator>Tamara_2</dc:creator>
                        <guid isPermaLink="true">https://microtechnics.ru/community/raznoe/c-visual-studio-preobrazovat-massiv-byte-v-znachenie-int/#post-3418</guid>
                    </item>
				                    <item>
                        <title>НА: c# | Visual Studio | преобразовать массив byte[] в значение Int</title>
                        <link>https://microtechnics.ru/community/raznoe/c-visual-studio-preobrazovat-massiv-byte-v-znachenie-int/#post-3417</link>
                        <pubDate>Thu, 20 Feb 2025 18:40:00 +0000</pubDate>
                        <description><![CDATA[@tamara_2 да, я забыл еще, на случай, если liitle-endian:
byte[] dataBytes = ;

if (BitConverter.IsLittleEndian)
{
    Array.Reverse(dataBytes );
}

int value = BitConver...]]></description>
                        <content:encoded><![CDATA[<p>@tamara_2 да, я забыл еще, на случай, если liitle-endian:</p>
<pre contenteditable="false">byte[] dataBytes = ;

if (BitConverter.IsLittleEndian)
{
    Array.Reverse(dataBytes );
}

int value = BitConverter.ToInt32(dataBytes, 0);</pre>]]></content:encoded>
						                            <category domain="https://microtechnics.ru/community/raznoe/">Разное</category>                        <dc:creator>Aveal MT</dc:creator>
                        <guid isPermaLink="true">https://microtechnics.ru/community/raznoe/c-visual-studio-preobrazovat-massiv-byte-v-znachenie-int/#post-3417</guid>
                    </item>
				                    <item>
                        <title>НА: c# | Visual Studio | преобразовать массив byte[] в значение Int</title>
                        <link>https://microtechnics.ru/community/raznoe/c-visual-studio-preobrazovat-massiv-byte-v-znachenie-int/#post-3416</link>
                        <pubDate>Thu, 20 Feb 2025 17:45:36 +0000</pubDate>
                        <description><![CDATA[@aveal благодарю за ответ, попробую.]]></description>
                        <content:encoded><![CDATA[@aveal благодарю за ответ, попробую.]]></content:encoded>
						                            <category domain="https://microtechnics.ru/community/raznoe/">Разное</category>                        <dc:creator>Tamara_2</dc:creator>
                        <guid isPermaLink="true">https://microtechnics.ru/community/raznoe/c-visual-studio-preobrazovat-massiv-byte-v-znachenie-int/#post-3416</guid>
                    </item>
				                    <item>
                        <title>НА: c# | Visual Studio | преобразовать массив byte[] в значение Int</title>
                        <link>https://microtechnics.ru/community/raznoe/c-visual-studio-preobrazovat-massiv-byte-v-znachenie-int/#post-3415</link>
                        <pubDate>Thu, 20 Feb 2025 16:34:38 +0000</pubDate>
                        <description><![CDATA[Доброго времени суток, можно при помощи BitConverter:
byte[] dataBytes = ;
int value = BitConverter.ToInt32(dataBytes, 0);
Второй аргумент ToInt32() - стартовый индекс в масси...]]></description>
                        <content:encoded><![CDATA[<p>Доброго времени суток, можно при помощи BitConverter:</p>
<pre contenteditable="false">byte[] dataBytes = ;
int value = BitConverter.ToInt32(dataBytes, 0);</pre>
<p>Второй аргумент ToInt32() - стартовый индекс в массиве, начиная с которого будет выполнено преобразование.</p>]]></content:encoded>
						                            <category domain="https://microtechnics.ru/community/raznoe/">Разное</category>                        <dc:creator>Aveal MT</dc:creator>
                        <guid isPermaLink="true">https://microtechnics.ru/community/raznoe/c-visual-studio-preobrazovat-massiv-byte-v-znachenie-int/#post-3415</guid>
                    </item>
				                    <item>
                        <title>c# | Visual Studio | преобразовать массив byte[] в значение Int</title>
                        <link>https://microtechnics.ru/community/raznoe/c-visual-studio-preobrazovat-massiv-byte-v-znachenie-int/#post-3414</link>
                        <pubDate>Thu, 20 Feb 2025 15:14:42 +0000</pubDate>
                        <description><![CDATA[Добрый вечер, 
помогите с переводом массива byte[] в целочисленное значение типа Int...
P. S. Как указано в названии темы использую Visual Studio и C#.]]></description>
                        <content:encoded><![CDATA[<p>Добрый вечер, </p>
<p>помогите с переводом массива byte[] в целочисленное значение типа Int...</p>
<p>P. S. Как указано в названии темы использую Visual Studio и C#.</p>]]></content:encoded>
						                            <category domain="https://microtechnics.ru/community/raznoe/">Разное</category>                        <dc:creator>Tamara_2</dc:creator>
                        <guid isPermaLink="true">https://microtechnics.ru/community/raznoe/c-visual-studio-preobrazovat-massiv-byte-v-znachenie-int/#post-3414</guid>
                    </item>
							        </channel>
        </rss>
		