Find Jobs
Hire Freelancers

intermittent Help with c# development (sharepoint related)

€8-30 EUR

완료함
게시됨 거의 7년 전

€8-30 EUR

제출할때 지불됩니다
We are coding ourselves but every now and then we run into a situation where we need support form a specialist. Example: At present we are stumbling over the following code snippet and resulting error message public static IEnumerable<string> QuotedSplit(this string str, char delimiter, char quotationMark) { return new QuotedSplit().Split(str, delimiter, quotationMark); } error: Error 6 '[login to view URL](string, char, char)' is a 'method' but is used like a 'type' c:\VisualStudioWorkspace\[login to view URL]\[login to view URL]\UpdateListItem\[login to view URL] If someone can solve these kind of questions you can mak a few dollars. Kind regards, Mario
프로젝트 ID: 14128886

프로젝트 정보

12 제안서
원격근무 프로젝트
활동 중 7년 전

돈을 좀 벌 생각이십니까?

프리랜서 입찰의 이점

예산 및 기간 설정
작업 결과에 대한 급여 수급
제안의 개요를 자세히 쓰세요
무료로 프로젝트에 신청하고 입찰할 수 있습니다
프로젝트를 수여된 사용자:
사용자 아바타
Hi, I got the issue with your code...and here is the solution. just use the following statement instead of the current return statement; return [login to view URL](delimiter, quotationMark); Full Code ------------ public static IEnumerable<string> QuotedSplit(this string str, char delimiter, char quotationMark) { //return new QuotedSplit().Split(str, delimiter, quotationMark); return [login to view URL](delimiter, quotationMark); } Please let me know if the above fix works. Thanks
€23 EUR 0일에
5.0 (18 건의 리뷰)
4.0
4.0
12 이 프로젝트에 프리랜서들의 평균 입찰은 €28 EUR입니다.
사용자 아바타
Hello, Greetings!!! I am Microsoft SharePoint Certified partner having over 8 years of work experience on a variety of SharePoint & Office 365 projects and I am confident, I can achieve the results that you are asking for and I can complete your project on time and within your budget. I have a solid Work experience in office 365, SharePoint Server 2013/2010, Nintex Asp .net, C#, Sql Server-2008/2005, Jquery, HTML5 Projects with More than 20 SharePoint projects and over 1k hours of work experience. Working and worked for top notch IT and government agencies as a SharePoint Expert. Certified with SharePoint 70-576 & 70-573 & Asp .net 70-528 and Master in Computer Science from Pune University. Allow me to showcase my skills & expertise for this requirement. Please let me know your convenient time so that we can discuss and start work. Looking forward to hear from you earliest convenience. Thank You. Sajid Khan Skype: sajidkhan2484
€23 EUR 1일에
4.9 (9 건의 리뷰)
4.5
4.5
사용자 아바타
replace your function with this public static IEnumerable<string> QuotedSplit(this string str, char delimiter, char quotationMark) { return QuotedSplit().Split(str, delimiter, quotationMark); } You welcome
€24 EUR 0일에
4.8 (7 건의 리뷰)
3.4
3.4
사용자 아바타
We at IEOTA TECHNOLOGIES have lot of exposure and experience in development for past 4 years served for several clients across the globe. We have fabulous developers who have extreme knowledge in coding and vast experience in various technologies such as HTML 5 ,CSS3, BOOTSTRAP, BOILERPLATE, JAVA SCRIPT, J QUERY, Ajax, PHP, MYSQL, LARAVEL, CAKE PHP, Codeigniter, WORDPRESS, Drupal, Joomla, Custom CMS, Magento, OpenCart, Prestashop, Woo Commerce, Virtue Mart, Shopify AND .NET TECHNOLOGIES. We at IEOTA TECHNOLOGIES have a team of 30+ people make ourselves to be in your socks, we envision your ideas and give it life, irrespective of size or complexity 5 Reasons why you should hire Us for your Work: 1. Available 24/7 upon your request 2. Delivery on-time with 100% satisfaction 3. Always think beyond boundaries and provide user friendly solution 4. Provide excellence with commitment 5. Most important, Free technical support for lifetime.
€83 EUR 1일에
5.0 (1 건의 리뷰)
2.6
2.6
사용자 아바타
Dear Sir, We have read your job and we can provide you with the skills you require. We use to work to time lines and meeting clients' expectations with prompt communication. We have got more than 8 years of experience in IT Services. We have been involved in developing and managing Enterprise Solutions including SharePoint, CRM, ERP etc. for our clients. Some of our SharePoint and Office 365 clients are : 1. Arriva Group 2. Adidas Group 3. Associated Foreign Exchange 4. iJento 5. Red 7 Marine 6. Retail Space Design 7. Housing Solutions Should our proposal be of interest to you please do not hesitate to contact us to discuss this further. Kind Regards, Disha Vora.
€23 EUR 1일에
1.0 (2 건의 리뷰)
2.0
2.0
사용자 아바타
I have extensive experience developing solutions in over 4 continents(Europe ,Africa , America and Australia) for Big firms such as PWC, Hitachi etc. I have worked on Solution Development Since SharePoint Moss which would be SharePoint 2007 ,SharePoint 2010,SharePoint 2013 ,SharePoint 2016 and SharePoint Online.
€29 EUR 1일에
0.0 (0 건의 리뷰)
0.0
0.0
사용자 아바타
Hey there, I'm sure that i can help you with errors that look like that. In example you posted you clearly name method QuotedSplit, and later on you try to return object of type QuotedSplit. That's impossible like error says. If QuotedSplit was a class and Split a method , that could work. I don't know what were your intentions with this method, but if i can see whole code i can help you with logical resolving. If you interested pm me ,I would love to help you.
€23 EUR 1일에
0.0 (0 건의 리뷰)
0.0
0.0
사용자 아바타
Having more than 7 years of experience in SharePoint Development. I've worked on SharePoint On-Prem and Online. I've working experience in SharePoint Apps, Workflows(SharePoint Desinger/Nintex/K2/Visual Studio), writing JSOM code, CSOM, SSOM. Development experience in Server side coding for SharePoint using SharePoint API's. Having experience in using REST API's. Social Features, Search, BI, Powershell coding etc.,
€23 EUR 1일에
0.0 (0 건의 리뷰)
0.0
0.0
사용자 아바타
Hello employer, After looking at the line of codes you have posted I'm able to understand that you are actually calling the method QuotedSplit() recursively from within the method itself. But you can't use it in the manner you have used because it returns the list of string and not a string. You must instead first split the entered string and than add it to the list and return from QuotedSplit(). I had came across such issues before in various projects that I had done and these are very common issues and I can handle such issues efficiently. So the best I can assure you is that I am the right person to work on such issues and can complete this task very fastly. Thanks for giving your precious time. Looking forward to discuss with you about the project further. Thanks & regards
€8 EUR 1일에
0.0 (0 건의 리뷰)
0.0
0.0

고객에 대한 정보

국기 (NETHERLANDS)
Helmond, Netherlands
5.0
24
결제 수단 확인
8월 21, 2016부터 회원입니다

고객 확인

감사합니다! 무료 크레딧을 신청할 수 있는 링크를 이메일로 보내드렸습니다.
이메일을 보내는 동안 문제가 발생했습니다. 다시 시도해 주세요.
등록 사용자 전체 등록 건수(일자리)
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
미리 보기 화면을 준비 중...
위치 정보 관련 접근권이 허용되었습니다.
고객님의 로그인 세션이 만료되어, 자동으로 로그아웃 처리가 되었습니다. 다시 로그인하여 주십시오.