47 lines
611 B
C#
47 lines
611 B
C#
/*
|
||
* Author: Nikolay Dvurechensky
|
||
* Site: https://www.dvurechensky.pro/
|
||
* Gmail: dvurechenskysoft@gmail.com
|
||
* Last Updated: 12 мая 2025 02:47:11
|
||
* Version: 1.0.3
|
||
*/
|
||
|
||
using System;
|
||
|
||
/*
|
||
* Что такое NULL
|
||
*/
|
||
class MyClass
|
||
{
|
||
|
||
}
|
||
|
||
struct MyStruct
|
||
{
|
||
|
||
}
|
||
|
||
class Program
|
||
{
|
||
static void Heap()
|
||
{
|
||
int[] a = new int[10];
|
||
}
|
||
|
||
static void Main()
|
||
{
|
||
bool b;
|
||
int a;
|
||
double d;
|
||
|
||
//У классов - NULL
|
||
Random random;
|
||
int[] arr;
|
||
MyClass myClass;
|
||
|
||
MyStruct myStruct;
|
||
|
||
Heap();
|
||
Console.ReadKey();
|
||
}
|
||
} |