Skip to content

Instantly share code, notes, and snippets.

В выставках «Радиоэлектроника и приборостроение-2023» и «Автоматизация-2023» принимают участие известные предприятия: ООО «РАНТЕХ, АО «Протон», ООО «ГЛОБАЛ ИНЖИРИНГ», ООО «Авангард-НСК», АО «ПриСТ», ООО «KEB РУС», завод «ЭлеСи», ГБУ «Корпорация развития Зеленограда», АО «ЭЛЕКОНД», ООО «ОВЕН-АВТОМАТИЗАЦИЯ, АО «ИЖЕВСКИЙ МОТОЗАВОД «АКСИОН-ХОЛДИНГ», НПО «КАСКАД», ГК «Узола», ООО «ИПК «Электрон-Маш», ООО «АссемРус», ООО «ЭЛЕГИР-МАРКИНГ» и другие. Впервые в выставке и в Санкт-Петербурге участие принимают более чем 50 компаний из Китая: Venture electronics, Robotphoenix, Beijing Hongli Kunpeng International Trade Co., Ltd., ZITROK Electronics CO., Limited, Ucreate PCB CO LTD, HEKOSINO TECHNOLOGY Co., Ltd., TUOZHAN Optoelectronics Co., Ltd., CIXI WEIDEMILE ELECTRONIC TECHNOLOGY Co., Ltd, Shenzhen Shuoheng Technology Co., Ltd., Shenzhen Jianghao Electronics Co., Ltd., Newsuntech Electronics Limited, Dongguan Hewang Electric Appliance Co., LTD. и многие другие.
var thread1 = new Thread(() -> { });
thread1.start();
var thread2 = new Thread(() -> { });
thread2.start();
var thread1 = new Thread(_ => { });
thread1.Start();
var thread2 = new Thread(_ => { });
thread2.Start();
namespace Encapsulation
{
public class BankAccount
{
private string _number;
private int _clientId;
private decimal _amountInUsd;
private decimal _amountInEur;
namespace Encapsulation
{
public class BankAccount
{
private string _number;
private int _clientId;
private decimal _amountInUsd;
private decimal _amountInEur;
var account = new BankAccount();
account._amountInUsd = 100500;
Console.WriteLine(account._amountInUsd);
namespace Encapsulation
{
public class BankAccount
{
private string _number;
private int _clientId;
private decimal _amountInUsd;
private decimal _amountInEur;