Heap and Stack Memory : Variable Definition « Language Basics « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Language Basics » Variable DefinitionScreenshots 
Heap and Stack Memory

/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: [email protected]
 * Create Date: June 27, 2003
 * Last Modified Date:
 */
using System;

namespace Client.Chapter_7___References__Pointers_and_Memory_Management
{
  public class HeapandStackMemory
  {
    static void Main(string[] args)
    {
      MyClass ThisClass = new MyClass();
    }
  }
  public class MyClass
  {
    public int MyInt;
    private long MyLong;
    public void DoSomething()
    {
      Console.WriteLine(MyInt);
      Console.WriteLine(MyLong);
    }
  }
}

           
       
Related examples in the same category
1.Declaring a variable.
2.Initializing a variable.
3.Variable default nameVariable default name
4.Two reference type variables may refer (or point) to the same objectTwo reference type variables may refer (or point)
               to the same object
5.Create a 4-bit type called NybbleCreate a 4-bit type called Nybble
6.Use new with a value typeUse new with a value type
7.Init variableInit variable
8.An attempt to reference an uninitialized variable
9.Illustrates variable scope
10.Demonstrate the use of readonly variablesDemonstrate the use of readonly variables
11.Uninitialized Values
12.Int, float, double, decimalInt, float, double, decimal
13.Demonstrate dynamic initializationDemonstrate dynamic initialization
14.Demonstrate block scopeDemonstrate block scope
15.Demonstrate lifetime of a variableDemonstrate lifetime of a variable
16.This program attempts to declared a variable in an inner scope
17.Demonstrate castingDemonstrate casting
18.A promotion surpriseA promotion surprise
19.Using casts in an expressionUsing casts in an expression
20.Create an implication operator in C#Create an implication operator in C#
21.declaring a reference type variable and creating an object the variable will reference
22.Definite Assignment and ArraysDefinite Assignment and Arrays
23.Variable Scoping and Definite Assignment:Definite AssignmentVariable Scoping and Definite Assignment:Definite Assignment
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.