📄 custorderhist.vb
字号:
'Copyright (C) 2002 Microsoft Corporation
'All rights reserved.
'THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
'EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
'MERCHANTIBILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
'Requires the Trial or Release version of Visual Studio .NET Professional (or greater).
Option Strict On
Imports System.Xml.Serialization
Public Class CustomerAndOrderHistoryInfo
' NWPRoducts is a typed DataSet class. See the ReadMe file for more information
' on how to create this custom type.
Public Orders As dsCustOrderHist
' Declaratively use the XmlAttribute class to shape the XML returned by the Web
' service so that the CompanyName field is an attribute instead of an element
' (the default serialization type). The AttributeName property is also set,
' which will change its name from CompanyName to Company when serialized. (Note:
' These XML changes do not have any impact on the client applications in this
' sample. You will see the effect of using XMLAttributeAttribute only by directly
' viewing the XML returned by the Web service.
<XmlAttributeAttribute(AttributeName:="Company")> Public CompanyName As String
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -