Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > Coding Releases > Coding Snippets
You last visited: Today at 19:03

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[.Net/MSIL] uint8/byte - bit rotate

Discussion on [.Net/MSIL] uint8/byte - bit rotate within the Coding Snippets forum part of the Coding Releases category.

Reply
 
Old   #1
 
tolio's Avatar
 
elite*gold: 2932
The Black Market: 169/1/0
Join Date: Oct 2009
Posts: 6,966
Received Thanks: 1,097
[.Net/MSIL] uint8/byte - bit rotate

Weil .Net mich weder in VB noch C# code kompilieren lässt mit welchem ich Bits in nem Byte Rotieren kann, einfach in msil gebaut und passt.

Code:
.assembly BitShifter {}
.module BitShifter.dll
.namespace Converter
{
.class public auto ansi BitShifter extends [mscorlib]System.Object {

.method public static uint8 RotateLeft(uint8 'value', uint32 count) cil managed
{

	ldarg.0
	ldarg.1
	ldc.i4.s 7
	and
	shl
	ldarg.0
	ldc.i4.s 8
	ldarg.1
	sub
	ldc.i4.s 7
	and
	shr.un
	or
	ret
}

.method public static uint8 RotateRight(uint8 'value', uint32 count) cil managed
{
	ldarg.0
	ldarg.1
	ldc.i4.s 7
	and
	shr.un
	ldarg.0
	ldc.i4.s 8
	ldarg.1
	sub
	ldc.i4.s 7
	and
	shl
	or
	ret
}
}
}
Entspricht ca folgendem c# code.


compilieren wie immer mit
Quote:
ilasm source.il /dll /output=BitShifter.dll
Viel Spaß damit
tolio is offline  
Thanks
1 User
Reply


Similar Threads Similar Threads
Rotate Camera?
11/27/2013 - League of Legends - 3 Replies
Hello guys, I am wondering if anyone knows a way to rotate the camera the is on the current patch, the problem is if i play a custom ai game i can play perfectly fine from the left side of the map, i want to pvp more but the problem is sometimes i end up on the right and i simply cannot see aswell.
About skill rotate in v19 source.
09/27/2013 - Flyff Private Server - 0 Replies
Having problems in rotating the skill slot for v19 adeilson source. Is there any fix for it?
rotate specials hack
08/15/2012 - Metin2 Private Server - 0 Replies
does some1 knwo about some kind of rotate specials of items hack, sorry for my english
Inline MSIL in C# and Generic Pointers
08/12/2012 - CO2 Programming - 2 Replies
I thought I'd share this here :) Inline MSIL in C# and Generic Pointers - CodeProject More finished content from the UG, yolo.
How i can rotate captchas
11/25/2011 - DarkOrbit - 5 Replies
I have one question.. How i can rotate captchas?!:confused:



All times are GMT +1. The time now is 19:04.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.