DOS | Creare un file da riga di comando
Questo comando crea un file grande 50 megabyte: fsutil file createnew test.txt 52428800
Appunti, stralci di programmazione e altro
Questo comando crea un file grande 50 megabyte: fsutil file createnew test.txt 52428800
Il seguente codice permette di aggiungere, in una tabella, un nuovo campo solo se questi non esiste già: IF NOT EXISTS( SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'Tabella' AND…
Da String a MemoryStream Dim _string As String = "Stringa da convertire" Dim _bytes As Byte() = System.Text.Encoding.UTF8.GetBytes(_string) Dim _memoryStream As New System.IO.MemoryStream(_bytes) Da MemoryStream a String Dim _bytes As…
For _i As Integer = 0 To _dataSet.Tables(0).Rows.Count - 1 For _j As Integer = 0 To _dataSet.Tables(0).Columns.Count - 1 Response.Write(_dataSet.Tables(0).Rows(_i)(_j).ToString & "|") Next Response.Write("<br />") Next