개정판 5a223b60
Fix: Approval로 등록된 심볼을 배치하지 못하는 오류 수정
- 심볼 배치 후 작업 영역을 클릭하면 MARKUS가 종료되는 오류 수정
Change-Id: I4e5be7f497aae8ba3f385c8efad688a7f82ae492
KCOM/Common/Commons.cs | ||
---|---|---|
5 | 5 |
{ |
6 | 6 |
public class Commons |
7 | 7 |
{ |
8 |
|
|
9 |
public static string shortGuid() |
|
8 |
public static string ShortGuid() |
|
10 | 9 |
{ |
11 | 10 |
char[] chars = "ABCDEF1234567890".ToCharArray(); |
12 | 11 |
byte[] data = new byte[1]; |
... | ... | |
24 | 23 |
return result.ToString(); |
25 | 24 |
} |
26 | 25 |
|
27 |
|
|
28 |
//GUID생성(최민수 사원 수정) //조장원 대리 다시 변경 |
|
29 |
public static string shortGuidold() |
|
30 |
{ |
|
31 |
byte[] bytes = new byte[16]; |
|
32 |
using (var provider = System.Security.Cryptography.RandomNumberGenerator.Create()) |
|
33 |
{ |
|
34 |
provider.GetBytes(bytes); |
|
35 |
} |
|
36 |
|
|
37 |
var guid = new Guid(bytes); |
|
38 |
|
|
39 |
return Convert.ToBase64String(guid.ToByteArray()) |
|
40 |
.Substring(0, 10) |
|
41 |
.Replace("/", "") |
|
42 |
.Replace("+", "") + DateTime.UtcNow.Ticks.ToString("x"); |
|
43 |
} |
|
44 |
|
|
45 |
//조장원 네자리 |
|
46 |
public static string shortCommentKey() |
|
47 |
{ |
|
48 |
byte[] bytes = new byte[3]; |
|
49 |
using (var provider = System.Security.Cryptography.RandomNumberGenerator.Create()) |
|
50 |
{ |
|
51 |
provider.GetBytes(bytes); |
|
52 |
} |
|
53 |
|
|
54 |
return Convert.ToBase64String(bytes); |
|
55 |
} |
|
56 |
|
|
57 | 26 |
//강인구 추가 |
58 |
public static string shortFileKey()
|
|
27 |
public static string ShortFileKey()
|
|
59 | 28 |
{ |
60 | 29 |
//byte[] bytes = new byte[3]; |
61 | 30 |
//using (var provider = System.IO.Path.GetRandomFileName()) |
내보내기 Unified diff