• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/12

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

12 Cards in this Set

  • Front
  • Back

List Three approches to working with JSON in C#

Use a Free Library


Use DataContracts built-in the .net framwork


Use your own "parser"

How do you write to the output window

System.Diagnositcs.Debug.WriteLine("String");

What is the name of the built in JSON Framework.

System.Runtime.Serialization


System.Runtime.Serialization.Json

From what version of .NET framwrok is JSON Serialization included.

.NET Framework V3.5

What is the Name of the built in Json Serializer

DataContractJsonSerializer

Does C# Extentionmethods Allow you to break Encapsulation ?

No, Private members fields remain hidden to extention methods.

Are Anonomous Types Portable ?

No

What does Dynamics do ?

Instructs the compiler to ignore Type checking

Can Anonomous types be shared ?

No

When do you use Dynamics

When working with Com objects that dont have shared types.

What is the signature for a extention method ?

public static class className{



public static methodName (this, params){


}



}

What is meant by Unified Types ?

Unified Types refers to how all .net types inherit from the Object base type.