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
- not working
- 자바스크립트
- xe
- 우분투
- C#
- dovecot
- html5
- UML
- 안드로이드 푸쉬
- php 시큐어코딩
- android 효과음
- 안드로이드 푸시
- curl
- javascript
- WebView
- Mail Server
- FCM
- PHP
- php 취약점
- 안드로이드
- 자동 생성
- roundcube
- soundpool
- Android
- C# IO
- mysql
- 설치
- 폼메일
- chart.js
- 안드로이드 gcm
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