출처 : http://cafe.naver.com/gogoomas/244870
System.Numerics 참조추가합니다
Imports System.Numerics
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim st = New Stopwatch()
st.Start()
Dim a As BigInteger = 1
For abc = 1 To 10000
a *= abc
Next
MsgBox(st.ElapsedMilliseconds / 1000)
TextBox1.Text = a.ToString
End Sub
End Class
MSDN참고 : http://msdn.microsoft.com/ko-kr/library/system.numerics.biginteger.aspx
'프로그래밍언어 > VB.NET' 카테고리의 다른 글
VB.NET에서 Beep음 재생! (0) | 2013.02.27 |
---|---|
VB.NET에서 DLL만들어 사용하기 (0) | 2013.02.25 |
VB.NET <> C# 변환 (0) | 2013.02.23 |
URL 인코딩 (0) | 2013.02.23 |
[스크랩] 웹소스 가져오는 방법 (0) | 2013.02.23 |