TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
vishwajeet chauhan
NA
8
12.1k
decoding qr code by c#
Aug 7 2019 6:16 PM
// The QRDecoder converts byte array to text string the class using this conversion
public
static
string
ByteArrayToStr(
byte
[] DataArray) {
Decoder = Encoding.UTF8.GetDecoder();
int
CharCount = Decoder.GetCharCount(DataArray, 0, DataArray.Length);
char
[] CharArray =
new
char
[CharCount];
Decoder.GetChars(DataArray, 0, DataArray.Length, CharArray, 0);
return
new
string
(CharArray);
}
it is converting byte to string ...can anyone tell me how is it working
Reply
Answers (
5
)
how to use ms sql server in xamarin ?
Save/export the datagridview contents