অ্যারের একটি উদাহরণ তৈরি করতে নতুন কীওয়ার্ড ব্যবহার করুন −
int [] a = new int[5];
নতুন অপারেটর একটি অবজেক্ট তৈরি করতে বা একটি বস্তুকে ইনস্ট্যান্টিয়েট করতে ব্যবহৃত হয়। এখানে উদাহরণে, নতুন −
ব্যবহার করে ক্লাসের জন্য একটি অবজেক্ট তৈরি করা হয়েছেউদাহরণ
using System;
namespace CalculatorApplication {
class NumberManipulator {
public void swap(int x, int y) {
int temp;
temp = x; /* save the value of x */
x = y; /* put y into x */
y = temp; /* put temp into y */
}
static void Main(string[] args) {
NumberManipulator n = new NumberManipulator();
/* local variable definition */
int a = 100;
int b = 200;
Console.WriteLine("Before swap, value of a : {0}", a);
Console.WriteLine("Before swap, value of b : {0}", b);
/* calling a function to swap the values */
n.swap(a, b);
Console.WriteLine("After swap, value of a : {0}", a);
Console.WriteLine("After swap, value of b : {0}", b);
Console.ReadLine();
}
}
} আউটপুট
Before swap, value of a : 100 Before swap, value of b : 200 After swap, value of a : 100 After swap, value of b : 200