PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my alerts
my settings
my profile
Don't like ads?
PRO users
don't see any ads ;-)
Public Pastes
zad 7 rz I
13 sec ago
nada
14 sec ago
Untitled
Java | 4 sec ago
Untitled
8 sec ago
Untitled
Java | 8 sec ago
Untitled
PAWN | 8 sec ago
Untitled
9 sec ago
lib_points.rb
9 sec ago
Untitled
By: a guest on
May 8th, 2012
| syntax:
None
| size: 0.19 KB | hits: 13 | expires: Never
download
|
raw
|
embed
|
report abuse
|
print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
Unsafe string creation from char[]
string s = GetBuffer();
fixed (char* pch = s) {
pch[0] = 'R';
pch[1] = 'e';
pch[2] = 's';
pch[3] = 'u';
pch[4] = 'l';
pch[5] = 't';
}
create a
new version
of this paste
RAW Paste Data
Unsafe string creation from char[] string s = GetBuffer(); fixed (char* pch = s) { pch[0] = 'R'; pch[1] = 'e'; pch[2] = 's'; pch[3] = 'u'; pch[4] = 'l'; pch[5] = 't'; }