diff --git a/Memory/Methods/Read.cs b/Memory/Methods/Read.cs index 701793c..990c2a3 100644 --- a/Memory/Methods/Read.cs +++ b/Memory/Methods/Read.cs @@ -427,11 +427,11 @@ public T ReadMemory(string address, string file = "") ConcurrentDictionary ReadTokenSrcs = new ConcurrentDictionary(); /// - /// Reads a memory address, keeps value in UI object. Ex: BindToUI("0x12345678,0x02,0x05", v => this.Invoke((MethodInvoker) delegate { this.name_label.Text = v; })); + /// Reads a memory address, keeps value in UI object. Ex: BindToUI("0x12345678,0x02,0x05", v => ObjName.Invoke((MethodInvoker)delegate { if (String.Compare(v, ObjName.Text) != 0) { ObjName.Text = v; } })); /// - /// - /// - /// + /// Your code or INI file variable name + /// Returning variable to bind to UI object. See example in summary. + /// OPTIONAL: INI file path and file name with extension public void BindToUI(string address, Action UIObject, string file = "") { CancellationTokenSource cts = new CancellationTokenSource();