Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- php 취약점
- html5
- Mail Server
- 자바스크립트
- not working
- roundcube
- xe
- 설치
- 우분투
- dovecot
- curl
- php 시큐어코딩
- chart.js
- WebView
- UML
- FCM
- 안드로이드 gcm
- 안드로이드
- 안드로이드 푸시
- javascript
- C#
- 안드로이드 푸쉬
- PHP
- 폼메일
- 자동 생성
- android 효과음
- soundpool
- Android
- C# IO
- mysql
Archives
- Today
- Total
목록[c#]ip주소 mac주소 알아내기 (1)
그러냐
[c#]ip주소 mac주소 알아내기
public string Get_MyIP() { IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName()); string ClientIP = string.Empty; for (int i = 0; i < host.AddressList.Length; i++) { if (host.AddressList[i].AddressFamily == AddressFamily.InterNetwork) { ClientIP = host.AddressList[i].ToString(); } } return ClientIP; } public string GetMACAddress() { string MacAddress = ""; NetworkInterface[] adapters = NetworkI..
c#
2016. 1. 28. 11:30