Intro Week 6

esse quam videri
Revision as of 03:02, 2 March 2010 by Jeff (talk | contribs) (Created page with '==Struct== Structures -struct are composed of several pieces of data that can be of different types. <csharp> struct student { public int oasis id; public string name; public d…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Struct

Structures -struct are composed of several pieces of data that can be of different types.

<csharp> struct student { public int oasis id; public string name; public double GPA; } </csharp> <csharp> struct player { public int playerID; public string playerName; public difficulty playerLevel; } </csharp>