在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#与s7-1500(OPC)

C#与s7-1500(OPC)

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:4.99M
  • 下载次数:109
  • 浏览次数:642
  • 发布时间:2020-05-31
  • 实例类别:C#语言基础
  • 发 布 人:009DE
  • 文件格式:.zip
  • 所需积分:5
 相关标签: 1500 00 S7 C#

实例介绍

【实例简介】含服务器端以及客户端
【实例截图】

【核心代码】

好例子网_OPC_UA_Client_S7-1500_CODE_V12

├── OPC_UA_Client_1500
│   ├── OPC_UA_S7-1500.sln
│   └── UA_Client_1500
│       ├── Application
│       │   ├── Opc.Ua.Client.dll
│       │   ├── Opc.Ua.Core.dll
│       │   └── UA Client 1500.exe
│       ├── Client
│       │   ├── Browser.cs
│       │   ├── DataDictionary.cs
│       │   ├── Documentation
│       │   │   └── Opc.Ua.Client.cs
│       │   ├── GlobalSuppressions.cs
│       │   ├── MonitoredItem.cs
│       │   ├── MonitoredItemStatus.cs
│       │   ├── NodeCache.cs
│       │   ├── Properties
│       │   │   ├── AssemblyInfo.cs
│       │   │   └── AssemblyVersionInfo.cs
│       │   ├── Session.cs
│       │   ├── SessionReconnectHandler.cs
│       │   ├── Subscription.cs
│       │   ├── UA Client Library.csproj
│       │   ├── bin
│       │   │   ├── Debug
│       │   │   └── Release
│       │   └── obj
│       │       ├── Debug
│       │       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │       │   ├── TempPE
│       │       │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│       │       │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│       │       │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│       │       │   └── UA Client Library.csproj.FileListAbsolute.txt
│       │       └── Release
│       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │           ├── TempPE
│       │           ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│       │           ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│       │           └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│       ├── Program.cs
│       ├── Properties
│       │   ├── AssemblyInfo.cs
│       │   ├── Resources.Designer.cs
│       │   ├── Resources.resx
│       │   └── Settings.Designer.cs
│       ├── Readme_OSS.zip
│       ├── Stack
│       │   ├── Core
│       │   │   ├── Documentation
│       │   │   │   ├── Opc.Ua.Bindings.cs
│       │   │   │   ├── Opc.Ua.Configuration.cs
│       │   │   │   ├── Opc.Ua.Schema.Binary.cs
│       │   │   │   ├── Opc.Ua.Schema.Xml.cs
│       │   │   │   ├── Opc.Ua.Schema.cs
│       │   │   │   └── Opc.Ua.cs
│       │   │   ├── Properties
│       │   │   │   ├── AssemblyInfo.cs
│       │   │   │   └── AssemblyVersionInfo.cs
│       │   │   ├── Schema
│       │   │   │   ├── ApplicationConfiguration.cs
│       │   │   │   ├── ApplicationConfiguration.xsd
│       │   │   │   ├── AttributeIds.csv
│       │   │   │   ├── BuildSchema.bat
│       │   │   │   ├── NodeIds.csv
│       │   │   │   ├── Opc.Ua.Endpoints.wsdl
│       │   │   │   ├── Opc.Ua.NodeSet.xml
│       │   │   │   ├── Opc.Ua.NodeSet2.xml
│       │   │   │   ├── Opc.Ua.Services.wsdl
│       │   │   │   ├── Opc.Ua.StatusCodes.csv
│       │   │   │   ├── Opc.Ua.Types.bsd
│       │   │   │   ├── Opc.Ua.Types.xsd
│       │   │   │   ├── SecuredApplication.cs
│       │   │   │   ├── SecuredApplication.xsd
│       │   │   │   ├── SecuredApplicationHelpers.cs
│       │   │   │   ├── UANodeSet.cs
│       │   │   │   ├── UANodeSet.xsd
│       │   │   │   ├── UANodeSetHelpers.cs
│       │   │   │   └── UAVariant.xsd
│       │   │   ├── Security
│       │   │   │   ├── AccessControl
│       │   │   │   │   ├── AccessTemplateManager.cs
│       │   │   │   │   ├── ApplicationAccessRule.cs
│       │   │   │   │   ├── HttpAccessRule.cs
│       │   │   │   │   └── UserRoleManager.cs
│       │   │   │   ├── Audit.cs
│       │   │   │   ├── Certificates
│       │   │   │   │   ├── CertificateFactory.cs
│       │   │   │   │   ├── CertificateIdentifier.cs
│       │   │   │   │   ├── CertificateStoreIdentifier.cs
│       │   │   │   │   ├── CertificateTrustList.cs
│       │   │   │   │   ├── CertificateValidator.cs
│       │   │   │   │   ├── DirectoryCertificateStore.cs
│       │   │   │   │   ├── EncryptedData.cs
│       │   │   │   │   ├── ICertificate.cs
│       │   │   │   │   ├── ICertificateStore.cs
│       │   │   │   │   ├── RsaUtils.cs
│       │   │   │   │   ├── SecurityConfiguration.cs
│       │   │   │   │   ├── Win32.cs
│       │   │   │   │   ├── WindowsCertificateStore.cs
│       │   │   │   │   ├── X509AuthorityKeyIdentifierExtension.cs
│       │   │   │   │   ├── X509CRL.cs
│       │   │   │   │   └── X509SubjectAltNameExtension.cs
│       │   │   │   └── Constants
│       │   │   │       ├── SecurityConstants.cs
│       │   │   │       └── SecurityPolicies.cs
│       │   │   ├── SilverlightDefs.cs
│       │   │   ├── Stack
│       │   │   │   ├── Bindings
│       │   │   │   │   ├── ArraySegmentStream.cs
│       │   │   │   │   ├── BaseBinding.cs
│       │   │   │   │   ├── BindingFactory.cs
│       │   │   │   │   ├── BufferManager.cs
│       │   │   │   │   ├── UaHttpsSoapBinding.cs
│       │   │   │   │   ├── UaSoapXmlBinding.cs
│       │   │   │   │   ├── UaSoapXmlOverPipeBinding.cs
│       │   │   │   │   ├── UaSoapXmlOverTcpBinding.cs
│       │   │   │   │   └── UaTcpBinding.cs
│       │   │   │   ├── Client
│       │   │   │   │   ├── ClientBase.cs
│       │   │   │   │   ├── DiscoveryClient.cs
│       │   │   │   │   ├── IChannelBase.cs
│       │   │   │   │   ├── IServiceRequest.cs
│       │   │   │   │   ├── IUserIdentity.cs
│       │   │   │   │   ├── InvokeServiceMessage.cs
│       │   │   │   │   ├── RegistrationClient.cs
│       │   │   │   │   ├── SessionChannel.cs
│       │   │   │   │   ├── UserIdentity.cs
│       │   │   │   │   └── WcfChannelBase.cs
│       │   │   │   ├── Configuration
│       │   │   │   │   ├── ApplicationConfiguration.cs
│       │   │   │   │   ├── ConfigurationWatcher.cs
│       │   │   │   │   ├── ConfiguredEndpoints.cs
│       │   │   │   │   ├── EndpointConfiguration.cs
│       │   │   │   │   ├── EndpointDescription.cs
│       │   │   │   │   ├── ISecurityConfigurationManager.cs
│       │   │   │   │   ├── SecurityConfigurationManager.cs
│       │   │   │   │   └── ServerProperties.cs
│       │   │   │   ├── Constants
│       │   │   │   │   ├── ConditionStateNames.cs
│       │   │   │   │   ├── DataTypes.Helpers.cs
│       │   │   │   │   ├── Namespaces.cs
│       │   │   │   │   └── ReferenceTypes.Helpers.cs
│       │   │   │   ├── Generated
│       │   │   │   │   ├── Opc.Ua.Channels.cs
│       │   │   │   │   ├── Opc.Ua.Classes.cs
│       │   │   │   │   ├── Opc.Ua.Client.cs
│       │   │   │   │   ├── Opc.Ua.Constants.cs
│       │   │   │   │   ├── Opc.Ua.DataTypes.cs
│       │   │   │   │   ├── Opc.Ua.Endpoints.cs
│       │   │   │   │   ├── Opc.Ua.Interfaces.cs
│       │   │   │   │   ├── Opc.Ua.Messages.cs
│       │   │   │   │   ├── Opc.Ua.NodeSet2.Part10.xml
│       │   │   │   │   ├── Opc.Ua.NodeSet2.Part11.xml
│       │   │   │   │   ├── Opc.Ua.NodeSet2.Part12.xml
│       │   │   │   │   ├── Opc.Ua.NodeSet2.Part13.xml
│       │   │   │   │   ├── Opc.Ua.NodeSet2.Part14.xml
│       │   │   │   │   ├── Opc.Ua.NodeSet2.Part3.xml
│       │   │   │   │   ├── Opc.Ua.NodeSet2.Part4.xml
│       │   │   │   │   ├── Opc.Ua.NodeSet2.Part5.xml
│       │   │   │   │   ├── Opc.Ua.NodeSet2.Part8.xml
│       │   │   │   │   ├── Opc.Ua.NodeSet2.Part9.xml
│       │   │   │   │   ├── Opc.Ua.NodeSet2.Part999.xml
│       │   │   │   │   ├── Opc.Ua.NodeSet2.xml
│       │   │   │   │   ├── Opc.Ua.PredefinedNodes.uanodes
│       │   │   │   │   ├── Opc.Ua.PredefinedNodes.xml
│       │   │   │   │   └── Opc.Ua.ServerBase.cs
│       │   │   │   ├── Https
│       │   │   │   │   ├── HttpsListener.cs
│       │   │   │   │   └── HttpsTransportChannel.cs
│       │   │   │   ├── Nodes
│       │   │   │   │   ├── ContentFilter.cs
│       │   │   │   │   ├── IFilterTarget.cs
│       │   │   │   │   ├── INode.cs
│       │   │   │   │   ├── IOperationContext.cs
│       │   │   │   │   ├── Node.cs
│       │   │   │   │   ├── NodeSet.cs
│       │   │   │   │   ├── NodeTable.cs
│       │   │   │   │   ├── ReferenceTable.cs
│       │   │   │   │   ├── TypeTable.cs
│       │   │   │   │   └── ViewTable.cs
│       │   │   │   ├── Server
│       │   │   │   │   ├── ClientAccessPolicy.xml
│       │   │   │   │   ├── EndpointBase.cs
│       │   │   │   │   ├── IEndpointBase.cs
│       │   │   │   │   ├── IServerBase.cs
│       │   │   │   │   ├── NonHttpEndpoint.cs
│       │   │   │   │   ├── SecureChannelContext.cs
│       │   │   │   │   ├── ServerBase.cs
│       │   │   │   │   ├── ServiceHost.cs
│       │   │   │   │   └── ServiceMessageContextBehaviorAttribute.cs
│       │   │   │   ├── State
│       │   │   │   │   ├── AcknowledgeableConditionState.cs
│       │   │   │   │   ├── AlarmConditionState.cs
│       │   │   │   │   ├── AuditEventState.cs
│       │   │   │   │   ├── BaseEventState.cs
│       │   │   │   │   ├── BaseInstanceState.cs
│       │   │   │   │   ├── BaseInstanceStateSnapshot.cs
│       │   │   │   │   ├── BaseObjectState.cs
│       │   │   │   │   ├── BaseObjectTypeState.cs
│       │   │   │   │   ├── BaseTypeState.cs
│       │   │   │   │   ├── BaseVariableState.cs
│       │   │   │   │   ├── BaseVariableTypeState.cs
│       │   │   │   │   ├── ConditionState.cs
│       │   │   │   │   ├── DataTypeState.cs
│       │   │   │   │   ├── DialogConditionState.cs
│       │   │   │   │   ├── ExclusiveLimitAlarmState.cs
│       │   │   │   │   ├── ExclusiveLimitStateMachineState.cs
│       │   │   │   │   ├── FiniteStateMachineState.cs
│       │   │   │   │   ├── ISystemContext.cs
│       │   │   │   │   ├── LimitAlarmState.cs
│       │   │   │   │   ├── MethodState.cs
│       │   │   │   │   ├── NodeBrowser.cs
│       │   │   │   │   ├── NodeState.cs
│       │   │   │   │   ├── NodeStateCollection.cs
│       │   │   │   │   ├── NonExclusiveLimitAlarmState.cs
│       │   │   │   │   ├── ProgramStateMachineState.cs
│       │   │   │   │   ├── ReferenceTypeState.cs
│       │   │   │   │   ├── ShelvedStateMachineState.cs
│       │   │   │   │   └── ViewState.cs
│       │   │   │   ├── Tcp
│       │   │   │   │   ├── TcpAsyncOperation.cs
│       │   │   │   │   ├── TcpChannel.Asymmetric.cs
│       │   │   │   │   ├── TcpChannel.Rsa.cs
│       │   │   │   │   ├── TcpChannel.Symmetric.cs
│       │   │   │   │   ├── TcpChannel.cs
│       │   │   │   │   ├── TcpChannelQuotas.cs
│       │   │   │   │   ├── TcpChannelToken.cs
│       │   │   │   │   ├── TcpClientChannel.cs
│       │   │   │   │   ├── TcpListener.cs
│       │   │   │   │   ├── TcpMessageSocket.cs
│       │   │   │   │   ├── TcpMessageType.cs
│       │   │   │   │   ├── TcpServerChannel.cs
│       │   │   │   │   ├── TcpTransportChannel.cs
│       │   │   │   │   └── Wcf
│       │   │   │   │       ├── BinaryEncodingMessageFormatter.cs
│       │   │   │   │       ├── IBinaryEncodingCapabilities.cs
│       │   │   │   │       ├── IUaTcpSecureChannel.cs
│       │   │   │   │       ├── InvokeServiceBodyWriter.cs
│       │   │   │   │       ├── StreamSecurityBindingElement.cs
│       │   │   │   │       ├── UaTcpChannelFactory.cs
│       │   │   │   │       ├── UaTcpChannelListener.cs
│       │   │   │   │       ├── UaTcpReplyChannel.cs
│       │   │   │   │       ├── UaTcpRequestChannel.cs
│       │   │   │   │       └── UaTcpTransportBindingElement.cs
│       │   │   │   ├── Transport
│       │   │   │   │   ├── AsyncResultBase.cs
│       │   │   │   │   ├── ITransportChannel.cs
│       │   │   │   │   ├── ITransportListener.cs
│       │   │   │   │   ├── ITransportListenerCallback.cs
│       │   │   │   │   ├── TransportChannelSettings.cs
│       │   │   │   │   └── TransportListenerSettings.cs
│       │   │   │   └── Types
│       │   │   │       ├── Argument.cs
│       │   │   │       ├── BrowseDescription.cs
│       │   │   │       ├── BrowsePath.cs
│       │   │   │       ├── CallMethodRequest.cs
│       │   │   │       ├── ContentFilter.Evaluate.cs
│       │   │   │       ├── EUInformation.cs
│       │   │   │       ├── EventFieldList.cs
│       │   │   │       ├── HistoryReadValueId.cs
│       │   │   │       ├── HistoryUpdateDetails.cs
│       │   │   │       ├── MonitoredItemCreateRequest.cs
│       │   │   │       ├── MonitoredItemCreateResult.cs
│       │   │   │       ├── MonitoredItemModifyRequest.cs
│       │   │   │       ├── MonitoredItemNotification.cs
│       │   │   │       ├── MonitoringFilter.cs
│       │   │   │       ├── NotificationMessage.cs
│       │   │   │       ├── QueryDataSet.cs
│       │   │   │       ├── Range.cs
│       │   │   │       ├── ReadValueId.cs
│       │   │   │       ├── ReferenceDescription.cs
│       │   │   │       ├── ServiceFault.cs
│       │   │   │       ├── SoftwareCertficate.cs
│       │   │   │       ├── StatusResult.cs
│       │   │   │       ├── UserIdentityToken.cs
│       │   │   │       ├── UserTokenPolicy.cs
│       │   │   │       ├── VariableAttributes.cs
│       │   │   │       ├── ViewDescription.cs
│       │   │   │       └── WriteValue.cs
│       │   │   ├── Types
│       │   │   │   ├── BuiltIn
│       │   │   │   │   ├── AttributeValues.cs
│       │   │   │   │   ├── BuiltInTypeCollections.cs
│       │   │   │   │   ├── DataValue.cs
│       │   │   │   │   ├── DiagnosticInfo.cs
│       │   │   │   │   ├── DiagnosticMasks.cs
│       │   │   │   │   ├── ExpandedNodeId.cs
│       │   │   │   │   ├── ExtensionObject.cs
│       │   │   │   │   ├── ITranslatableObject.cs
│       │   │   │   │   ├── ITypeTable.cs
│       │   │   │   │   ├── LocalizedText.cs
│       │   │   │   │   ├── MessageContextExtension.cs
│       │   │   │   │   ├── NodeId.cs
│       │   │   │   │   ├── QualifiedName.cs
│       │   │   │   │   ├── StatusCode.cs
│       │   │   │   │   ├── Uuid.cs
│       │   │   │   │   └── Variant.cs
│       │   │   │   ├── Constants
│       │   │   │   │   ├── Attributes.Helpers.cs
│       │   │   │   │   └── StatusCodes.Helpers.cs
│       │   │   │   ├── Encoders
│       │   │   │   │   ├── BinaryDecoder.cs
│       │   │   │   │   ├── BinaryEncoder.cs
│       │   │   │   │   ├── EncodableObject.cs
│       │   │   │   │   ├── EncodeableFactory.cs
│       │   │   │   │   ├── IDecoder.cs
│       │   │   │   │   ├── IEncodable.cs
│       │   │   │   │   ├── IEncoder.cs
│       │   │   │   │   ├── XmlDecoder.cs
│       │   │   │   │   └── XmlEncoder.cs
│       │   │   │   ├── Generated
│       │   │   │   │   ├── Opc.Ua.Attributes.cs
│       │   │   │   │   └── Opc.Ua.StatusCodes.cs
│       │   │   │   ├── Schemas
│       │   │   │   │   ├── BinarySchema.cs
│       │   │   │   │   ├── BinarySchemaValidator.cs
│       │   │   │   │   ├── BuiltInTypes.bsd
│       │   │   │   │   ├── BuiltInTypes.xml
│       │   │   │   │   ├── OPCBinarySchema.cs
│       │   │   │   │   ├── OPCBinarySchema.xsd
│       │   │   │   │   ├── SchemaValidator.cs
│       │   │   │   │   ├── StandardTypes.bsd
│       │   │   │   │   └── XmlSchemaValidator.cs
│       │   │   │   └── Utils
│       │   │   │       ├── DataComparer.cs
│       │   │   │       ├── DataGenerator.cs
│       │   │   │       ├── HiResClock.cs
│       │   │   │       ├── LocalizedData.txt
│       │   │   │       ├── Lock.cs
│       │   │   │       ├── NamespaceTable.cs
│       │   │   │       ├── NumericRange.cs
│       │   │   │       ├── ReadOnlyList.cs
│       │   │   │       ├── RelativePath.cs
│       │   │   │       ├── ServiceMessageContext.cs
│       │   │   │       ├── ServiceResult.cs
│       │   │   │       ├── ServiceResultException.cs
│       │   │   │       ├── TypeInfo.cs
│       │   │   │       └── Utils.cs
│       │   │   ├── UA Core Library.csproj
│       │   │   ├── UA Silverlight Core Library.csproj
│       │   │   ├── bin
│       │   │   │   ├── Debug
│       │   │   │   └── Release
│       │   │   └── obj
│       │   │       ├── Debug
│       │   │       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │   │       │   ├── TempPE
│       │   │       │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│       │   │       │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│       │   │       │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│       │   │       │   └── UA Core Library.csproj.FileListAbsolute.txt
│       │   │       └── Release
│       │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │   │           ├── TempPE
│       │   │           ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│       │   │           ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│       │   │           └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│       │   └── Documentation
│       │       └── OPC UA .NET Stack 1.02 Readme.rtf
│       ├── UAClientCertForm.Designer.cs
│       ├── UAClientCertForm.cs
│       ├── UAClientCertForm.resx
│       ├── UAClientForm.Designer.cs
│       ├── UAClientForm.cs
│       ├── UAClientForm.resx
│       ├── UAClientHelperAPI.cs
│       ├── UA_Client_1500.csproj
│       ├── bin
│       │   ├── Debug
│       │   └── Release
│       └── obj
│           ├── Debug
│           └── Release
└── OPC_UA_Server_1500
    └── OPC_UA_Server_1500
        ├── AdditionalFiles
        │   ├── GSD
        │   │   ├── GSDML_002A_0C01_RF180C.bmp
        │   │   ├── GSDML_0C01_RF180C.bmp
        │   │   └── gsdml-v2.2-siemens-rf180c-20100329.xml
        │   └── PLCM
        │       ├── plcmArchive.pma
        │       ├── plcmArchive.pma14_1
        │       └── plcmArchive.pma15_0
        ├── IM
        │   ├── HMI
        │   │   ├── C
        │   │   │   └── 0
        │   │   └── DeviceFolders.dat
        │   ├── SPL
        │   │   └── options
        │   └── SearchIndex
        │       ├── _14.fdt
        │       ├── _14.fdx
        │       ├── _14.fnm
        │       ├── _14.frq
        │       ├── _14.prx
        │       ├── _14.tii
        │       ├── _14.tis
        │       ├── _14.tvd
        │       ├── _14.tvf
        │       ├── _14.tvx
        │       ├── _14_1.del
        │       ├── _15.cfs
        │       ├── _15_1.del
        │       ├── _16.cfs
        │       ├── segments.gen
        │       └── segments_r
        ├── Logs
        │   ├── ConversionLogFile.xsl
        │   ├── ConversionLog_14.0.0.0_to_15.0.0.0.xml
        │   ├── ICO_PE_InfoActionRequest.png
        │   ├── ICO_PE_InfoDecision.png
        │   ├── ICO_PE_InfoDecisionCritical.png
        │   ├── ICO_PE_InfoError.png
        │   ├── ICO_PE_InfoErrorCritical.png
        │   ├── ICO_PE_InfoInformation.png
        │   ├── ICO_PE_InfoInputRequired.png
        │   ├── ICO_PE_InfoSuccess.png
        │   └── ICO_PE_InfoWarning.png
        ├── OPC_UA_Server_1500.ap15
        ├── System
        │   ├── PEData
        │   │   └── Meta
        │   │       ├── ChangeListConsumer
        │   │       │   ├── HmiBase.xml
        │   │       │   ├── Iecpl.xml
        │   │       │   ├── Siemens.Simatic.Lang.IPI.Target.xml
        │   │       │   ├── Siemens.Simatic.Lang.Online.xml
        │   │       │   └── Siemens.Simatic.Lang.xml
        │   │       └── ChangeListProvider
        │   │           └── Siemens.Automation.DomainModel.xml
        │   ├── PEData.idx
        │   └── PEData.plf
        ├── TMP
        ├── UserFiles
        └── XRef
            └── XRef.db

80 directories, 359 files



标签: 1500 00 S7 C#

实例下载地址

C#与s7-1500(OPC)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

第 1 楼 sam88 发表于: 2020-11-26 10:01 25
服务器有密码保护

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有1条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警