c#串口程序接收数据并打印
In this C# program – we are going to print size of various data types, to print size of a type, we use sizeof() operator.
在此C#程序中–我们将打印各种数据类型的大小,并使用typeof()运算符打印类型的大小。
It accepts a data type and returns its size in the memory.
它接受数据类型并在内存中返回其大小。
Example:
例:
// C# program to C# program to print
// size of various data types
using System;
using System.IO;
using System.Text;
namespace IncludeHelp
{
class Test
{
// Main Method
static void Main(string[] args)
{
Console.WriteLine("sizeof(int): {0}", sizeof(int));
Console.WriteLine("sizeof(float): {0}", sizeof(float));
Console.WriteLine("sizeof(char): {0}", sizeof(char));
Console.WriteLine("sizeof(double): {0}", sizeof(double));
Console.WriteLine("sizeof(bool): {0}", sizeof(bool));
//hit ENTER to exit the program
Console.ReadLine();
}
}
}
Output
输出量
sizeof(int): 4
sizeof(float): 4
sizeof(char): 2
sizeof(double): 8
sizeof(bool): 1
翻译自: https://www.includehelp.com/dot-net/print-size-of-various-data-types-in-c-sharp.aspx
c#串口程序接收数据并打印