About 40,300 results
Open links in new tab
  1. ScriptIgnoreAttribute Class (System.Web.Script.Serialization)

    The following example demonstrates how to apply ScriptIgnoreAttribute to the Comment field in the custom class named Group. This instructs JavaScriptSerializer to ignore the field when serializing an …

  2. C# Guide - .NET managed language - C# | Microsoft Learn

    The C# guide has everything you need to learn C# and get started writing .NET apps. Learn C# programming - for beginning developers, developers new to C#, and experienced C# / .NET …

  3. Where is [ScriptIgnore] in dotnet core? - Stack Overflow

    Apr 27, 2021 · [ScriptIgnore] (and the System.Web.Script.Serialization namespace) was discontinued in .NET Core and should only be used in legacy versions of .NET Framework. According to the docs, …

  4. c# - How to exclude property from Json Serialization - Stack Overflow

    If you are using System.Web.Script.Serialization in the .NET framework you can put a ScriptIgnore attribute on the members that shouldn't be serialized. See the example taken from here:

  5. C# Tutorial (C Sharp) - W3Schools

    C# (C-Sharp) is a programming language developed by Microsoft that runs on the .NET Framework. C# is used to develop web apps, desktop apps, mobile apps, games and much more.

  6. C# Cheatsheet – A Complete Guide for Beginners

    Jul 29, 2025 · This C# cheatsheet gives you a compact but complete summary of all key concepts, from basic syntax to advanced topics like LINQ, delegates, and async/await. Each section includes a clear …

  7. C Sharp (programming language) - Wikipedia

    James Gosling, who created the Java programming language in 1994, and Bill Joy, a co-founder of Sun Microsystems, the originator of Java, called C# an "imitation" of Java; Gosling further said: " [C# is] …

  8. C# Online Compiler | .NET Fiddle

    Test your C# code online with .NET Fiddle code editor.

  9. Getting Started with C# in VS Code - Visual Studio Code

    You can follow the steps of this walkthrough to learn more about the features of the C# extension. You can also use this walkthrough to install the latest .NET SDK.

  10. JavaScriptSerializer - How to ignore property in C#

    In C#, when using the JavaScriptSerializer class to serialize an object to JSON, you can ignore specific properties from being included in the output JSON by using the [ScriptIgnore] attribute.