Skip to content

Instantly share code, notes, and snippets.

View veyselsahin's full-sized avatar

Veysel Şahin veyselsahin

View GitHub Profile
@veyselsahin
veyselsahin / ftp.cs
Created November 3, 2013 05:25
FTP Class For C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Net;
using System.Text.RegularExpressions;
namespace SystemEx
{
@veyselsahin
veyselsahin / Services
Created November 3, 2013 04:56
Windows Servisler İçin Static Class
public static class ServiceInstaller
{
private const int STANDARD_RIGHTS_REQUIRED = 0xF0000;
private const int SERVICE_WIN32_OWN_PROCESS = 0x00000010;
[StructLayout(LayoutKind.Sequential)]
private class SERVICE_STATUS
{
public int dwServiceType = 0;
public ServiceState dwCurrentState = 0;
@veyselsahin
veyselsahin / glb.cs
Last active December 26, 2015 19:59
Global C# sınıfı
using System;
using System.Collections.Generic;
using System.Data;
using System.Diagnostics;
using System.IO;
using System.Management;
using System.Net;
using System.Runtime.InteropServices;
using System.Text.RegularExpressions;