디버거에서 변수에 대한 메모리

Unity3D/C# 2020. 11. 24. 21:08
반응형

coding.tools/kr/ascii-to-hex

 

ASCII 문자열 - 16 진수 온라인 변환 도구 - 𝗖𝗼𝗱𝗶𝗻𝗴.𝗧𝗼𝗼𝗹𝘀

이 온라인 ASCII 16 진수 - 16 진 변환 도구는 ASCII. 자열을 16 진수 배열로 변환하는 데 유용합니다.

coding.tools

docs.microsoft.com/ko-kr/dotnet/csharp/programming-guide/types/how-to-convert-between-hexadecimal-strings-and-numeric-types

 

16진수 문자열과 숫자 형식 간 변환 방법 - C# 프로그래밍 가이드

16진수 문자열과 숫자 형식 간에 변환하는 방법을 알아봅니다. 코드 예제를 살펴보고 사용 가능한 추가 리소스를 확인합니다.

docs.microsoft.com

docs.microsoft.com/ko-kr/visualstudio/debugger/memory-windows?view=vs-2019

 

디버거에서 변수에 대한 메모리 보기 - Visual Studio

Visual Studio 디버거에서 메모리 창 사용(C#, C++, Visual Basic, F#)Use the Memory windows in the Visual Studio debugger (C#, C++, Visual Basic, F#) 이 문서의 내용 --> 디버그하는 동안 메모리 창에는 앱에서 사용 중인 메모

docs.microsoft.com

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Study03
{
    public class App
    {
        public App()
        {
            //변수 , 형식, 값 

            //변수 선언, 정의 + 값 할당 
            int cost = 4;

            //문자열 값 
            //변수 선언 + 값이 할당 
            string name = "속삭이는 숲";
            string hexValues = "c18d c0ad c774 b294 20 c232";
            string[] hexValuesSplit = hexValues.Split(' ');
            foreach (string hex in hexValuesSplit)
            {
                // Convert the number expressed in base-16 to an integer.
                int value = Convert.ToInt32(hex, 16);
                // Get the character corresponding to the integral value.
                string stringValue = Char.ConvertFromUtf32(value);
                char charValue = (char)value;
                Console.WriteLine("hexadecimal value = {0}, int value = {1}, char value = {2} or {3}",
                                    hex, value, stringValue, charValue);
            }

        }


    }
}
반응형

'Unity3D > C#' 카테고리의 다른 글

C# bitwise  (0) 2020.11.27
C# 확률을 적용한 랜덤값 선택하기 (cumulative)  (0) 2020.11.26
한글 받침에따라서 '을/를' 구분하기  (0) 2020.10.19
xml to json  (0) 2020.08.05
C# 배열연습  (0) 2020.04.17
: