更新:2007 年 11 月
向对象中写入一个整数。
命名空间:  Microsoft.SmartDevice.DeviceAgentTransport
程序集:  Microsoft.SmartDevice.DeviceAgentTransport(在 Microsoft.SmartDevice.DeviceAgentTransport.dll 中)
语法
声明
Sub WriteInt32 ( _
    in_int32 As Integer _
)
用法
Dim instance As IPacket
Dim in_int32 As Integer
instance.WriteInt32(in_int32)
void WriteInt32(
    int in_int32
)
void WriteInt32(
    int in_int32
)
function WriteInt32(
    in_int32 : int
)
参数
- in_int32 
 类型:System.Int32- 要向数据包中写入的整数。 
示例
    packet = PacketFactory.GetNewPacket()
    ' Write the version of .NET Compact Framework into the packet.
    packet.WriteString("Hello Desktop Computer")
    packet.WriteInt32(Environment.Version.Major)
    packet.WriteInt32(Environment.Version.Minor)
    packet.WriteInt32(Environment.Version.Build)
    packet.WriteInt32(Environment.Version.Revision)
    ' Pass the packet to desktop application.
    packetStream.Write(packet)
End Sub 'Main
packet = PacketFactory.GetNewPacket();
// Write the version of .NET Compact Framework into the packet.
packet.WriteString("Hello Desktop Computer");
packet.WriteInt32(Environment.Version.Major);
packet.WriteInt32(Environment.Version.Minor);
packet.WriteInt32(Environment.Version.Build);
packet.WriteInt32(Environment.Version.Revision);
// Pass the packet to desktop application.
packetStream.Write(packet);
权限
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。