public ListCodeLogOnlyList = new(); ... await System.IO.File.WriteAllLinesAsync( _filename, this.CodeLogOnlyList );
Microsoft AX 2012, X++, C#, SQL server, SSRS, Java, JavaFX, Oracle, PL/SQL, Delphi - codes examples, step-by-step tutorials, experiences.
Monday, January 30, 2023
c# - How to save List into text file
Friday, January 20, 2023
c# - How to access to parent form (for form)
itemWebLink.Web.KeyDown += ((FMain)this.ParentForm).Web_KeyDown;
c# - How applicate LINQ WHERE and FOREACH
this.ConditionGroups.Where( x => x.Active == true ).ToList().ForEach( condition => { ... } );
Wednesday, January 11, 2023
sql server - How to call exec proc and show its result
declare @i int; exec @i = users_exists 'worker01'; print @i;Output:
0
Subscribe to:
Posts (Atom)