Horje
how to delete multiple file by datagridview in c# Code Example
how to delete multiple file by datagridview in c#
 for (int i = 0; i < dgvPurechaseData.Rows.Count-1; i++)
                {
                    string[] picList = new string[] { dgvPurechaseData.Rows[i].Cells[image cell index].Value.ToString() };
                    foreach (string file in picList)
                    {
                        File.Delete(file);
                    }
                }




Csharp

Related
c# choose first n elements from list Code Example c# choose first n elements from list Code Example
c# get bits from float Code Example c# get bits from float Code Example
game object set exact position unity Code Example game object set exact position unity Code Example
an entry with the same key already exists asp net Code Example an entry with the same key already exists asp net Code Example
discord bot time C# Code Example discord bot time C# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7