C# 7.0부터 숫자 구분 기호인 _를 사용하는것이 지원됩니다. 모든 종류의 숫자 리터럴에서 숫자 구분 기호를 사용할 수 있습니다.

 

 int v = 1_000__000;
 float vv = 1_000_000.123f;
 var binaryLiteral = 0b_0010_1010;

 

이런식으로 사용 가능.

'프로그래밍 > C#' 카테고리의 다른 글

구조체 문법  (0) 2020.10.06
튜플(복수리턴) 예제  (0) 2020.10.06
C# 현재 호출되는 메소드명/함수명 가져오는법  (0) 2018.11.20
코루틴 트리거 팁  (0) 2018.11.16
Convert DateTime to String And String to DateTime  (0) 2018.10.02

아래의 둘 중 아무꺼나 쓰면 된다

Application.OpenURL("http://192.168.0.1:1234/");
Help.BrowseURL("http://192.168.0.1:5678/");

.razor 에서

<input id="htmlID" type="text" @onkeyup="Print">

 

@code

{

    string result = string.Empty;

    public async void Print()
    {
        result = await JS.InvokeAsync<string>("JsFunctions.printInput", "htmlID");
    }

}

 

.js 에서

window.JsFunctions = {
    printInput: function (id) {
        var e = document.getElementById(id);
        return e.value;
    },

}

+ Recent posts