- Регистрация
- 03.10.2018
- Сообщения
- 1 136
- Благодарностей
- 196
- Баллы
- 63
Всем привет
Можете подсказать - как правильно вызвать методы в общем коде?
Пробую так:
но мне пишет - то класс не доступ, то instance не присвоено значение
В чем вопрос может быть?
а если так:
то пишет что Instance не присвоено значение
Вроде разобрался:
в class надо было указать:
Можете подсказать - как правильно вызвать методы в общем коде?
Пробую так:
C#:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading;
using System.IO;
using System.Text.RegularExpressions;
using ZennoLab.CommandCenter;
using ZennoLab.InterfacesLibrary;
using ZennoLab.InterfacesLibrary.ProjectModel;
using ZennoLab.InterfacesLibrary.ProjectModel.Collections;
using ZennoLab.InterfacesLibrary.ProjectModel.Enums;
using ZennoLab.Macros;
using Global.ZennoExtensions;
using ZennoLab.Emulation;
using ZennoLab.CommandCenter.TouchEvents;
using ZennoLab.CommandCenter.FullEmulation;
using ZennoLab.InterfacesLibrary.Enums;
namespace ZennoLab.OwnCode
{
/// <summary>
/// A simple class of the common code
/// </summary>
public class CommonCode
{
/// <summary>
/// Lock this object to mark part of code for single thread execution
/// </summary>
public static object SyncObject = new object();
public void run(){
// Insert your code here
ZennoLab.CommandCenter.Instance instance = new Instance();
ZennoLab.CommandCenter.Tab tab = instance.ActiveTab;
}
}
}
В чем вопрос может быть?
а если так:
C#:
ublic void run(){
// Insert your code here
ZennoLab.CommandCenter.Instance instance;
ZennoLab.CommandCenter.Tab tab;
tab = instance.ActiveTab;
}
Вроде разобрался:
в class надо было указать:
C#:
public Instance instance;
public Tab tab;
Последнее редактирование: