자료실

부자는 돈을 써서 시간을 아끼지만 가난한 사람은 시간을 써서 돈을 아낀다

vb.net

IT HUB를 찾아주셔서 감사합니다.

기타 [vb.net] Assembly GUID 가져오기

페이지 정보

profile_image
작성자 하나를하더라도최선을
댓글 0건 조회 7,514회 작성일 22-07-09 08:11

본문

Imports System.Runtime.InteropServices
 
Module _ASM_GUID_
    Public Function ASM_GUID() As String
        Dim asm As Reflection.Assembly = Reflection.Assembly.GetExecutingAssembly()
        ''The following line (part of the original answer) is misleading.
        ''**Do not** use it unless you want to return the System.Reflection.Assembly type's GUID.
        'getGUID = assembly.[GetType]().GUID.ToString()
 
        '//fea961de-2778-4732-8de0-9689305de95b
        ' The following is the correct code.
        Dim attribute = CType(asm.GetCustomAttributes(GetType(GuidAttribute), True)(0), GuidAttribute)
        Return attribute.Value
    End Function
End Module

댓글목록

등록된 댓글이 없습니다.