在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 实现c#封装Json

实现c#封装Json

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:4.69M
  • 下载次数:19
  • 浏览次数:88
  • 发布时间:2023-09-21
  • 实例类别:C#语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: json 封装 实现 js C#

实例介绍

【实例简介】实现c#封装Json
Json.NET,实现json格式的DLL 实现!

【实例截图】

from clipboard

【核心代码】

.
├── Bin
│   ├── Net
│   │   ├── Newtonsoft.Json.dll
│   │   ├── Newtonsoft.Json.pdb
│   │   └── Newtonsoft.Json.xml
│   ├── Net20
│   │   ├── Newtonsoft.Json.Net20.dll
│   │   ├── Newtonsoft.Json.Net20.pdb
│   │   └── Newtonsoft.Json.Net20.xml
│   ├── Net35
│   │   ├── Newtonsoft.Json.Net35.dll
│   │   ├── Newtonsoft.Json.Net35.pdb
│   │   └── Newtonsoft.Json.Net35.xml
│   ├── Silverlight
│   │   ├── Newtonsoft.Json.Silverlight.dll
│   │   ├── Newtonsoft.Json.Silverlight.pdb
│   │   └── Newtonsoft.Json.Silverlight.xml
│   ├── WindowsPhone
│   │   ├── Newtonsoft.Json.WindowsPhone.dll
│   │   ├── Newtonsoft.Json.WindowsPhone.pdb
│   │   └── Newtonsoft.Json.WindowsPhone.xml
│   └── versions.txt
├── Documentation.chm
├── Source
│   ├── Build
│   │   ├── Newtonsoft.Json.nuspec
│   │   ├── build.ps1
│   │   ├── runbuild.cmd
│   │   └── runbuild.ps1
│   ├── Doc
│   │   ├── ContractResolver.html
│   │   ├── ConvertingJSONandXML.html
│   │   ├── CustomCreationConverter.html
│   │   ├── DatesInJSON.html
│   │   ├── Introduction.html
│   │   ├── LINQtoJSON.html
│   │   ├── PreserveObjectReferences.html
│   │   ├── ReadingWritingJSON.html
│   │   ├── ReducingSerializedJSONSize.html
│   │   ├── SelectToken.html
│   │   ├── SerializationAttributes.html
│   │   ├── SerializationCallbacks.html
│   │   ├── SerializationErrorHandling.html
│   │   ├── SerializingCollections.html
│   │   ├── SerializingJSON.html
│   │   ├── SerializingJSONFragments.html
│   │   ├── custom.css
│   │   ├── doc.shfbproj
│   │   ├── doc.sitemap
│   │   ├── donate.gif
│   │   ├── readme.txt
│   │   ├── styles.css
│   │   └── versions.txt
│   ├── Src
│   │   ├── Lib
│   │   │   ├── LinqBridge.dll
│   │   │   └── NUnit
│   │   │       ├── Compact
│   │   │       │   └── NUnitLite.dll
│   │   │       ├── DotNet
│   │   │       │   ├── nunit.framework.dll
│   │   │       │   └── nunit.framework.xml
│   │   │       └── Silverlight
│   │   │           └── nunit.framework.dll
│   │   ├── Newtonsoft.Json
│   │   │   ├── Bson
│   │   │   │   ├── BsonBinaryType.cs
│   │   │   │   ├── BsonBinaryWriter.cs
│   │   │   │   ├── BsonObjectId.cs
│   │   │   │   ├── BsonReader.cs
│   │   │   │   ├── BsonToken.cs
│   │   │   │   ├── BsonType.cs
│   │   │   │   └── BsonWriter.cs
│   │   │   ├── ConstructorHandling.cs
│   │   │   ├── Converters
│   │   │   │   ├── BinaryConverter.cs
│   │   │   │   ├── BsonObjectIdConverter.cs
│   │   │   │   ├── CustomCreationConverter.cs
│   │   │   │   ├── DataSetConverter.cs
│   │   │   │   ├── DataTableConverter.cs
│   │   │   │   ├── DateTimeConverterBase.cs
│   │   │   │   ├── EntityKeyMemberConverter.cs
│   │   │   │   ├── IsoDateTimeConverter.cs
│   │   │   │   ├── JavaScriptDateTimeConverter.cs
│   │   │   │   ├── JsonDateTimeSerializationMode.cs
│   │   │   │   ├── KeyValuePairConverter.cs
│   │   │   │   ├── RegexConverter.cs
│   │   │   │   ├── StringEnumConverter.cs
│   │   │   │   └── XmlNodeConverter.cs
│   │   │   ├── DefaultValueHandling.cs
│   │   │   ├── Dynamic.snk
│   │   │   ├── FormatterAssemblyStyle.cs
│   │   │   ├── IJsonLineInfo.cs
│   │   │   ├── JsonArrayAttribute.cs
│   │   │   ├── JsonContainerAttribute.cs
│   │   │   ├── JsonConvert.cs
│   │   │   ├── JsonConverter.cs
│   │   │   ├── JsonConverterAttribute.cs
│   │   │   ├── JsonConverterCollection.cs
│   │   │   ├── JsonIgnoreAttribute.cs
│   │   │   ├── JsonObjectAttribute.cs
│   │   │   ├── JsonPropertyAttribute.cs
│   │   │   ├── JsonReader.cs
│   │   │   ├── JsonReaderException.cs
│   │   │   ├── JsonSerializationException.cs
│   │   │   ├── JsonSerializer.cs
│   │   │   ├── JsonSerializerSettings.cs
│   │   │   ├── JsonTextReader.cs
│   │   │   ├── JsonTextWriter.cs
│   │   │   ├── JsonToken.cs
│   │   │   ├── JsonValidatingReader.cs
│   │   │   ├── JsonWriter.cs
│   │   │   ├── JsonWriterException.cs
│   │   │   ├── Linq
│   │   │   │   ├── ComponentModel
│   │   │   │   │   └── JPropertyDescriptor.cs
│   │   │   │   ├── Extensions.cs
│   │   │   │   ├── IJEnumerable.cs
│   │   │   │   ├── JArray.cs
│   │   │   │   ├── JConstructor.cs
│   │   │   │   ├── JContainer.cs
│   │   │   │   ├── JEnumerable.cs
│   │   │   │   ├── JObject.cs
│   │   │   │   ├── JPath.cs
│   │   │   │   ├── JProperty.cs
│   │   │   │   ├── JRaw.cs
│   │   │   │   ├── JToken.cs
│   │   │   │   ├── JTokenEqualityComparer.cs
│   │   │   │   ├── JTokenReader.cs
│   │   │   │   ├── JTokenType.cs
│   │   │   │   ├── JTokenWriter.cs
│   │   │   │   └── JValue.cs
│   │   │   ├── MemberSerialization.cs
│   │   │   ├── MissingMemberHandling.cs
│   │   │   ├── Newtonsoft.Json.Net20.csproj
│   │   │   ├── Newtonsoft.Json.Net35.csproj
│   │   │   ├── Newtonsoft.Json.Silverlight.csproj
│   │   │   ├── Newtonsoft.Json.WindowsPhone.csproj
│   │   │   ├── Newtonsoft.Json.csproj
│   │   │   ├── Newtonsoft.Json.ruleset
│   │   │   ├── NullValueHandling.cs
│   │   │   ├── ObjectCreationHandling.cs
│   │   │   ├── PreserveReferencesHandling.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── ReferenceLoopHandling.cs
│   │   │   ├── Required.cs
│   │   │   ├── Schema
│   │   │   │   ├── Extensions.cs
│   │   │   │   ├── JsonSchema.cs
│   │   │   │   ├── JsonSchemaBuilder.cs
│   │   │   │   ├── JsonSchemaConstants.cs
│   │   │   │   ├── JsonSchemaException.cs
│   │   │   │   ├── JsonSchemaGenerator.cs
│   │   │   │   ├── JsonSchemaModel.cs
│   │   │   │   ├── JsonSchemaModelBuilder.cs
│   │   │   │   ├── JsonSchemaNode.cs
│   │   │   │   ├── JsonSchemaNodeCollection.cs
│   │   │   │   ├── JsonSchemaResolver.cs
│   │   │   │   ├── JsonSchemaType.cs
│   │   │   │   ├── JsonSchemaWriter.cs
│   │   │   │   ├── UndefinedSchemaIdHandling.cs
│   │   │   │   ├── ValidationEventArgs.cs
│   │   │   │   └── ValidationEventHandler.cs
│   │   │   ├── Serialization
│   │   │   │   ├── CachedAttributeGetter.cs
│   │   │   │   ├── CamelCasePropertyNamesContractResolver.cs
│   │   │   │   ├── DefaultContractResolver.cs
│   │   │   │   ├── DefaultReferenceResolver.cs
│   │   │   │   ├── DefaultSerializationBinder.cs
│   │   │   │   ├── DynamicValueProvider.cs
│   │   │   │   ├── ErrorContext.cs
│   │   │   │   ├── ErrorEventArgs.cs
│   │   │   │   ├── IContractResolver.cs
│   │   │   │   ├── IReferenceResolver.cs
│   │   │   │   ├── IValueProvider.cs
│   │   │   │   ├── JsonArrayContract.cs
│   │   │   │   ├── JsonContract.cs
│   │   │   │   ├── JsonDictionaryContract.cs
│   │   │   │   ├── JsonDynamicContract.cs
│   │   │   │   ├── JsonFormatterConverter.cs
│   │   │   │   ├── JsonISerializableContract.cs
│   │   │   │   ├── JsonLinqContract.cs
│   │   │   │   ├── JsonObjectContract.cs
│   │   │   │   ├── JsonPrimitiveContract.cs
│   │   │   │   ├── JsonProperty.cs
│   │   │   │   ├── JsonPropertyCollection.cs
│   │   │   │   ├── JsonSerializerInternalBase.cs
│   │   │   │   ├── JsonSerializerInternalReader.cs
│   │   │   │   ├── JsonSerializerInternalWriter.cs
│   │   │   │   ├── JsonSerializerProxy.cs
│   │   │   │   ├── JsonStringContract.cs
│   │   │   │   ├── JsonTypeReflector.cs
│   │   │   │   ├── LateBoundMetadataTypeAttribute.cs
│   │   │   │   ├── ObjectConstructor.cs
│   │   │   │   ├── OnErrorAttribute.cs
│   │   │   │   └── ReflectionValueProvider.cs
│   │   │   ├── SerializationBinder.cs
│   │   │   ├── StreamingContext.cs
│   │   │   ├── TypeNameHandling.cs
│   │   │   └── Utilities
│   │   │       ├── Base64Encoder.cs
│   │   │       ├── BidirectionalDictionary.cs
│   │   │       ├── CollectionUtils.cs
│   │   │       ├── CollectionWrapper.cs
│   │   │       ├── ConvertUtils.cs
│   │   │       ├── DateTimeUtils.cs
│   │   │       ├── DictionaryWrapper.cs
│   │   │       ├── DynamicProxy.cs
│   │   │       ├── DynamicProxyMetaObject.cs
│   │   │       ├── DynamicReflectionDelegateFactory.cs
│   │   │       ├── DynamicUtils.cs
│   │   │       ├── DynamicWrapper.cs
│   │   │       ├── EnumUtils.cs
│   │   │       ├── EnumValue.cs
│   │   │       ├── EnumValues.cs
│   │   │       ├── ILGeneratorExtensions.cs
│   │   │       ├── JavaScriptUtils.cs
│   │   │       ├── LateBoundReflectionDelegateFactory.cs
│   │   │       ├── ListWrapper.cs
│   │   │       ├── MathUtils.cs
│   │   │       ├── MethodCall.cs
│   │   │       ├── MiscellaneousUtils.cs
│   │   │       ├── ReflectionDelegateFactory.cs
│   │   │       ├── ReflectionUtils.cs
│   │   │       ├── StringBuffer.cs
│   │   │       ├── StringUtils.cs
│   │   │       ├── ThreadSafeStore.cs
│   │   │       └── ValidationUtils.cs
│   │   ├── Newtonsoft.Json.Net20.sln
│   │   ├── Newtonsoft.Json.Net35.sln
│   │   ├── Newtonsoft.Json.Silverlight.sln
│   │   ├── Newtonsoft.Json.Tests
│   │   │   ├── Bson
│   │   │   │   ├── BsonReaderTests.cs
│   │   │   │   └── BsonWriterTests.cs
│   │   │   ├── Converters
│   │   │   │   ├── BinaryConverterTests.cs
│   │   │   │   ├── CustomCreationConverterTests.cs
│   │   │   │   ├── DataSetConverterTests.cs
│   │   │   │   ├── DataTableConverterTests.cs
│   │   │   │   ├── IsoDateTimeConverterTests.cs
│   │   │   │   ├── JavaScriptDateTimeConverterTests.cs
│   │   │   │   ├── ObjectIdConverterTests.cs
│   │   │   │   ├── RegexConverterTests.cs
│   │   │   │   ├── StringEnumConverterTests.cs
│   │   │   │   └── XmlNodeConverterTest.cs
│   │   │   ├── ExceptionTests.cs
│   │   │   ├── FileSystemEntityModel.Designer.cs
│   │   │   ├── FileSystemEntityModel.edmx
│   │   │   ├── JsonArrayAttributeTests.cs
│   │   │   ├── JsonConvertTest.cs
│   │   │   ├── JsonTextReaderTest.cs
│   │   │   ├── JsonTextWriterTest.cs
│   │   │   ├── JsonValidatingReaderTests.cs
│   │   │   ├── Linq
│   │   │   │   ├── ComponentModel
│   │   │   │   │   ├── BindingTests.cs
│   │   │   │   │   └── JPropertyDescriptorTests.cs
│   │   │   │   ├── DynamicTests.cs
│   │   │   │   ├── JArrayTests.cs
│   │   │   │   ├── JConstructorTests.cs
│   │   │   │   ├── JObjectTests.cs
│   │   │   │   ├── JPathTests.cs
│   │   │   │   ├── JPropertyTests.cs
│   │   │   │   ├── JRawTests.cs
│   │   │   │   ├── JTokenEqualityComparerTests.cs
│   │   │   │   ├── JTokenReaderTest.cs
│   │   │   │   ├── JTokenTests.cs
│   │   │   │   ├── JTokenWriterTest.cs
│   │   │   │   ├── JValueTests.cs
│   │   │   │   └── LinqToJsonTest.cs
│   │   │   ├── LinqToSql
│   │   │   │   ├── Department.cs
│   │   │   │   ├── DepartmentConverter.cs
│   │   │   │   ├── GuidByteArrayConverter.cs
│   │   │   │   ├── LinqToSqlClasses.dbml
│   │   │   │   ├── LinqToSqlClasses.dbml.layout
│   │   │   │   ├── LinqToSqlClasses.designer.cs
│   │   │   │   ├── LinqToSqlClassesSerializationTests.cs
│   │   │   │   ├── Person.cs
│   │   │   │   └── Role.cs
│   │   │   ├── Newtonsoft.Json.Tests.Net20.csproj
│   │   │   ├── Newtonsoft.Json.Tests.Net35.csproj
│   │   │   ├── Newtonsoft.Json.Tests.Silverlight.csproj
│   │   │   ├── Newtonsoft.Json.Tests.WindowsPhone.csproj
│   │   │   ├── Newtonsoft.Json.Tests.csproj
│   │   │   ├── PerformanceTests.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Schema
│   │   │   │   ├── ExtensionsTests.cs
│   │   │   │   ├── JsonSchemaBuilderTests.cs
│   │   │   │   ├── JsonSchemaGeneratorTests.cs
│   │   │   │   ├── JsonSchemaModelBuilderTests.cs
│   │   │   │   ├── JsonSchemaNodeTests.cs
│   │   │   │   └── JsonSchemaTests.cs
│   │   │   ├── Serialization
│   │   │   │   ├── CamelCasePropertyNamesContractResolverTests.cs
│   │   │   │   ├── ConstructorHandlingTests.cs
│   │   │   │   ├── ContractResolverTests.cs
│   │   │   │   ├── DefaultValueHandlingTests.cs
│   │   │   │   ├── DynamicTests.cs
│   │   │   │   ├── EntitiesSerializationTests.cs
│   │   │   │   ├── JsonSerializerTest.cs
│   │   │   │   ├── MissingMemberHandlingTests.cs
│   │   │   │   ├── NullValueHandlingTests.cs
│   │   │   │   ├── PopulateTests.cs
│   │   │   │   ├── PreserveReferencesHandlingTests.cs
│   │   │   │   ├── SerializationErrorHandlingTests.cs
│   │   │   │   ├── SerializationEventAttributeTests.cs
│   │   │   │   └── TypeNameHandlingTests.cs
│   │   │   ├── SilverlightTests.cs
│   │   │   ├── TestFixtureBase.cs
│   │   │   ├── TestObjects
│   │   │   │   ├── AbstractGenericBase.cs
│   │   │   │   ├── ArgumentConverterPrecedenceClassConverter.cs
│   │   │   │   ├── Article.cs
│   │   │   │   ├── ArticleCollection.cs
│   │   │   │   ├── BadJsonPropertyClass.cs
│   │   │   │   ├── Bar.cs
│   │   │   │   ├── Car.cs
│   │   │   │   ├── CircularReferenceClass.cs
│   │   │   │   ├── CircularReferenceWithIdClass.cs
│   │   │   │   ├── ClassAndMemberConverterClass.cs
│   │   │   │   ├── ClassConverterPrecedenceClassConverter.cs
│   │   │   │   ├── ClassWithArray.cs
│   │   │   │   ├── ClassWithGuid.cs
│   │   │   │   ├── Computer.cs
│   │   │   │   ├── ConstructorCaseSensitivityClass.cs
│   │   │   │   ├── ConstructorReadonlyFields.cs
│   │   │   │   ├── Container.cs
│   │   │   │   ├── Content.cs
│   │   │   │   ├── ContentBaseClass.cs
│   │   │   │   ├── ContentSubClass.cs
│   │   │   │   ├── ConverableMembers.cs
│   │   │   │   ├── ConverterPrecedenceClass.cs
│   │   │   │   ├── ConverterPrecedenceClassConverter.cs
│   │   │   │   ├── DateTimeErrorObjectCollection.cs
│   │   │   │   ├── DateTimeTestClass.cs
│   │   │   │   ├── DefaultValueAttributeTestClass.cs
│   │   │   │   ├── DictionaryInterfaceClass.cs
│   │   │   │   ├── DoubleClass.cs
│   │   │   │   ├── EmployeeReference.cs
│   │   │   │   ├── Event.cs
│   │   │   │   ├── Foo.cs
│   │   │   │   ├── GenericImpl.cs
│   │   │   │   ├── GenericListAndDictionaryInterfaceProperties.cs
│   │   │   │   ├── GetOnlyPropertyClass.cs
│   │   │   │   ├── GoogleMapGeocoderStructure.cs
│   │   │   │   ├── HolderClass.cs
│   │   │   │   ├── IncompatibleJsonAttributeClass.cs
│   │   │   │   ├── InterfacePropertyTestClass.cs
│   │   │   │   ├── Invoice.cs
│   │   │   │   ├── JaggedArray.cs
│   │   │   │   ├── JsonIgnoreAttributeOnClassTestClass.cs
│   │   │   │   ├── JsonIgnoreAttributeTestClass.cs
│   │   │   │   ├── JsonPropertyClass.cs
│   │   │   │   ├── JsonPropertyWithHandlingValues.cs
│   │   │   │   ├── ListErrorObject.cs
│   │   │   │   ├── ListErrorObjectCollection.cs
│   │   │   │   ├── ListOfIds.cs
│   │   │   │   ├── ListTestClass.cs
│   │   │   │   ├── LogEntry.cs
│   │   │   │   ├── MemberConverterClass.cs
│   │   │   │   ├── MemberConverterPrecedenceClassConverter.cs
│   │   │   │   ├── MethodExecutorObject.cs
│   │   │   │   ├── Movie.cs
│   │   │   │   ├── MyClass.cs
│   │   │   │   ├── Name.cs
│   │   │   │   ├── NonRequest.cs
│   │   │   │   ├── NullableDateTimeTestClass.cs
│   │   │   │   ├── ObjectArrayPropertyTest.cs
│   │   │   │   ├── Person.cs
│   │   │   │   ├── PersonError.cs
│   │   │   │   ├── PersonPropertyClass.cs
│   │   │   │   ├── PersonRaw.cs
│   │   │   │   ├── PhoneNumber.cs
│   │   │   │   ├── PrivateConstructorTestClass.cs
│   │   │   │   ├── PrivateConstructorWithPublicParametizedConstructorTestClass.cs
│   │   │   │   ├── PrivateMembersClass.cs
│   │   │   │   ├── Product.cs
│   │   │   │   ├── ProductCollection.cs
│   │   │   │   ├── ProductShort.cs
│   │   │   │   ├── PropertyCase.cs
│   │   │   │   ├── RequestOnly.cs
│   │   │   │   ├── RequiredMembersClass.cs
│   │   │   │   ├── RoleTransfer.cs
│   │   │   │   ├── SearchResult.cs
│   │   │   │   ├── SerializationEventTestDictionary.cs
│   │   │   │   ├── SerializationEventTestList.cs
│   │   │   │   ├── SerializationEventTestObject.cs
│   │   │   │   ├── SerializationEventTestObjectWithConstructor.cs
│   │   │   │   ├── SetOnlyPropertyClass.cs
│   │   │   │   ├── SetOnlyPropertyClass2.cs
│   │   │   │   ├── Shortie.cs
│   │   │   │   ├── Store.cs
│   │   │   │   ├── StoreColor.cs
│   │   │   │   ├── StructTest.cs
│   │   │   │   ├── SubKlass.cs
│   │   │   │   ├── SuperKlass.cs
│   │   │   │   ├── TypeClass.cs
│   │   │   │   ├── TypedSubHashtable.cs
│   │   │   │   ├── UserNullable.cs
│   │   │   │   ├── VersionKeyedCollection.cs
│   │   │   │   └── WagePerson.cs
│   │   │   ├── Utilities
│   │   │   │   ├── DynamicReflectionDelegateFactoryTests.cs
│   │   │   │   └── ReflectionUtilsTests.cs
│   │   │   └── bunny_pancake.jpg
│   │   ├── Newtonsoft.Json.WindowsPhone.sln
│   │   └── Newtonsoft.Json.sln
│   └── Tools
│       ├── 7-zip
│       │   ├── 7-zip.chm
│       │   ├── 7za.exe
│       │   ├── copying.txt
│       │   ├── license.txt
│       │   └── readme.txt
│       ├── ILMerge
│       │   ├── ILMerge License.rtf
│       │   ├── ILMerge.doc
│       │   └── ILMerge.exe
│       ├── NUnit
│       │   ├── NUnitFitTests.html
│       │   ├── NUnitTests.config
│       │   ├── NUnitTests.nunit
│       │   ├── agent.conf
│       │   ├── agent.log.conf
│       │   ├── framework
│       │   │   ├── nunit.framework.dll
│       │   │   ├── nunit.framework.xml
│       │   │   ├── nunit.mocks.dll
│       │   │   └── pnunit.framework.dll
│       │   ├── launcher.log.conf
│       │   ├── lib
│       │   │   ├── Failure.png
│       │   │   ├── Ignored.png
│       │   │   ├── Inconclusive.png
│       │   │   ├── Skipped.png
│       │   │   ├── Success.png
│       │   │   ├── fit.dll
│       │   │   ├── log4net.dll
│       │   │   ├── nunit-console-runner.dll
│       │   │   ├── nunit-gui-runner.dll
│       │   │   ├── nunit.core.dll
│       │   │   ├── nunit.core.interfaces.dll
│       │   │   ├── nunit.fixtures.dll
│       │   │   ├── nunit.uiexception.dll
│       │   │   ├── nunit.uikit.dll
│       │   │   └── nunit.util.dll
│       │   ├── nunit-agent-x86.exe
│       │   ├── nunit-agent-x86.exe.config
│       │   ├── nunit-agent.exe
│       │   ├── nunit-agent.exe.config
│       │   ├── nunit-console-x86.exe
│       │   ├── nunit-console-x86.exe.config
│       │   ├── nunit-console.exe
│       │   ├── nunit-console.exe.config
│       │   ├── nunit-x86.exe
│       │   ├── nunit-x86.exe.config
│       │   ├── nunit.exe
│       │   ├── nunit.exe.config
│       │   ├── nunit.framework.dll
│       │   ├── pnunit-agent.exe
│       │   ├── pnunit-agent.exe.config
│       │   ├── pnunit-launcher.exe
│       │   ├── pnunit-launcher.exe.config
│       │   ├── pnunit.framework.dll
│       │   ├── pnunit.tests.dll
│       │   ├── runFile.exe
│       │   ├── runFile.exe.config
│       │   ├── runpnunit.bat
│       │   ├── test.conf
│       │   └── tests
│       │       ├── loadtest-assembly.dll
│       │       ├── mock-assembly.dll
│       │       ├── nonamespace-assembly.dll
│       │       ├── nunit-console.tests.dll
│       │       ├── nunit-gui.tests.dll
│       │       ├── nunit.core.tests.dll
│       │       ├── nunit.fixtures.tests.dll
│       │       ├── nunit.framework.dll
│       │       ├── nunit.framework.tests.dll
│       │       ├── nunit.mocks.tests.dll
│       │       ├── nunit.uiexception.tests.dll
│       │       ├── nunit.uikit.tests.dll
│       │       ├── nunit.util.tests.dll
│       │       ├── test-assembly.dll
│       │       ├── test-utilities.dll
│       │       └── timing-tests.dll
│       ├── NuGet
│       │   └── NuGet.exe
│       └── PSake
│           └── psake.psm1
├── readme.txt
└── 实现c#封装Json_Json40r1.zip

44 directories, 453 files


标签: json 封装 实现 js C#

实例下载地址

实现c#封装Json

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警