Java 에서 C# 코드 변환하기 (www.tangiblesoftwaresolutions.com)
Java 에서 C# 코드 변환하기 (www.tangiblesoftwaresolutions.com)
windows 에 .net framework 4.5 이상이 설치되어야 아래 프로그램이 설치 가능하다고 합니다.
그리고 라이선스 free 버전은 코드 변환을 파일 개수 상관 없이 코드 라인 100 줄까지만 변환을 해준다고 합니다. 그래도 감사.. ^^
Our Source Code Converters
Convert Between VB.NET and C#
- Instant C# (VB.NET to C#)
- Instant VB (C# to VB.NET)
Convert Between Java and C#
Convert Between C# and C++
Convert Between Java and C++
Convert Between VB.NET and C++
- VB to C++ Converter (VB.NET to C++)
- C++ to VB Converter (C++ to VB.NET)
Convert Between VB.NET and Java
- VB to Java Converter (VB.NET to Java)
- Java to VB Converter (Java to VB.NET)
https://www.tangiblesoftwaresolutions.com/product_details/java_to_csharp_converter.html
Java to C# Converter
Java to C# Converter Java to C# Converter produces great C# code, saving you hours of painstaking work and valuable time. Try the Free Edition Free High-quality conversion Limited conversion output Download Purchase the Premium Edition $149 US per year (15
www.tangiblesoftwaresolutions.com
저는 java to C# converter 를 설치 했는데요. 샘플로100 줄 이하의 java 소스를 변환 시켜봤더니 나오긴 하는데.. .제대로 로 변환이 안된것 같은데 말이죠..^^;; C# 에서는 getParameter 아래 처럼 둘 다 사용이 가능합니다.
string act= Request.QueryString["act"];
string act= Request["act"];
c# 에서는 getRemoteAddr() 함수가 서버 설정 상황에 따라 다르게 구문이 사용됩니다. 아래 stackoverflows 사이트에서 참고하시기 바랍니다.
https://stackoverflow.com/a/6914521
Why does ServerVariable["REMOTE_ADDR"] returns the server IP?
I have the following code: string ip = Request.ServerVariables["REMOTE_ADDR"]; Which, in the test environment does return the user IP addrress, but when we deploy the website to production, this
stackoverflow.com
모든게 전부 잘 변환되는건 아니니 툴로 1차 변환 후 구글링으로 찾아서 하나씩 찾는게 제일 빠를 듯 싶네요.
