csh , bın , obj kodları

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Süper Üye
Katılım
19 Ağu 2016
Mesajlar
844
Tepki puanı
3
Ödüller
9
9 HİZMET YILI
CSH 
Kod:
   Dim p As Process = Process.GetProcessesByName("wolftü.bin")(0)
        For Each moz As System.Diagnostics.ProcessModule In p.Modules
            If moz.FileName.IndexOf("csh") <> -1 Then
                Label1.Text = moz.BaseAddress.ToString
            End If
        Next

BIN 

Kod:
Dim p As Process = Process.GetProcessesByName("wolftü.bin")(0)
For Each moz As System.Diagnostics.ProcessModule In p.Modules
If moz.FileName.IndexOf("bin") <> -1 Then
Label2.Text = moz.BaseAddress.ToString
End If
Next

OBJ

Kod:
Dim p As Process = Process.GetProcessesByName("wolftü.bin")(0)
For Each moz As System.Diagnostics.ProcessModule In p.Modules
If moz.FileName.IndexOf("obj") <> -1 Then
Label3.Text = moz.BaseAddress.ToString
End If
Next

Konuyu yanlış yerde açtıysam taşıyın
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst