translate these sentences please
ما برای شما بهترین سرویسها را انتخاب می كنیم تا شما به هدف دلخواه خود برسید. سیستم ثبت سفارش بصورت آنلاین برای راحتی و سهولت هرچه بیشتر برای کسانی که قصد داشتن سایتی با بهترین امکانات را دارند نیز راه اندازی گردید.
پشتیبانی در هر ساعت از شبانه روز به شکل هاي مختلف از جمله : تماس تلفنی و ارسال پیامک و همچنین ايميل و مکاتبه آنلاين در یاهو مسنجر آماده پاسخگويي به سوالات و مشکلات شما مي باشند
Please help me with translation
سلام دوستان. ممنون میشم راهنماییم کنید. من در حال خواندن یک pdf به زبان انگلیسی با موضوع برنامه نویسی به زبان #C هستم. تقریباً میتونم ترجمه کنم. ولی این پاراگراف زیر رو باهاش مشکل دارم. یعنی بعضی کلماتش رو نمی تونم بفهمم. اگر برام ترجمه کنید یه دنیا ممنون میشم. در ضمن می خواستم اگر یک کتاب خوب برای یادگیری ترجمه درک مطلب ها دارین معرفی کنین. ببینید مشکل من تو ترجمه بعضی اصطلاحاته. اگر تو زمینه کامپیوترم باشه که خیلی خوب میشه. یعنی ترجمه تخصصی . مرسی.
------------------------------------------------------------------------------------------------------------------------
the .NET Framework takes this into account. Simple object copying by members is achievable through the method MemberwiseClone(), inherited from System.Object. This is a protected method, but it would be easy to define a public method on an object that called this method. The copying supplied by this method is known as shallow copying, in that it doesn't take reference type members into account. This means that reference members in the new object will refer to the same objects as the equivalent members in the source object, which isn't ideal in many cases. If you want to create new instances of the members in question, copying the values across rather than the references, then you need to perform a deep copy.There is an interface you can implement that allows you to do this in a standard way: ICloneable. If you use this interface, you must implement the single method it contains, Clone(). This method returns a value of type System.Object. You can use whatever processing you wish to obtain this object, by implementing the method body however you choose. This means that you can implement a deep copy if you wish to (although the exact behavior isn't mandatory, so you could perform a shallow copy if you wanted to).